svn commit: samba r10746 - in trunk/source/rpc_client: .

jra at samba.org jra at samba.org
Wed Oct 5 23:03:03 GMT 2005


Author: jra
Date: 2005-10-05 23:03:02 +0000 (Wed, 05 Oct 2005)
New Revision: 10746

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=10746

Log:
Fix artificial 1k restriction.
Jeremy.

Modified:
   trunk/source/rpc_client/cli_pipe.c


Changeset:
Modified: trunk/source/rpc_client/cli_pipe.c
===================================================================
--- trunk/source/rpc_client/cli_pipe.c	2005-10-05 23:02:59 UTC (rev 10745)
+++ trunk/source/rpc_client/cli_pipe.c	2005-10-05 23:03:02 UTC (rev 10746)
@@ -748,7 +748,7 @@
 	uint32 data_len = data ? prs_offset(data) : 0;
 	char *prdata = NULL;
 	uint32 rdata_len = 0;
-	uint32 max_data = cli->max_xmit_frag ? cli->max_xmit_frag : 1024;
+	uint32 max_data = cli->max_xmit_frag ? cli->max_xmit_frag : RPC_MAX_PDU_FRAG_LEN;
 	uint32 current_rbuf_offset = 0;
 	prs_struct current_pdu;
 	
@@ -2546,6 +2546,8 @@
 
 /****************************************************************************
  Open a named pipe to an SMB server and bind using krb5 (bind type 16).
+ The idea is this can be called with service_princ, username and password all
+ NULL so long as the caller has a TGT.
  ****************************************************************************/
 
 struct rpc_pipe_client *cli_rpc_pipe_open_krb5(struct cli_state *cli,



More information about the samba-cvs mailing list