A new RPC pipe! The \pipe\echo named pipe is for testing large RPC
authorTim Potter <tpot@samba.org>
Fri, 11 Apr 2003 04:09:14 +0000 (04:09 +0000)
committerTim Potter <tpot@samba.org>
Fri, 11 Apr 2003 04:09:14 +0000 (04:09 +0000)
commit4ccd34ef836eba05f81dc2da73fd7cfaac201798
tree07bcbf13a8aa3356780f63fd788d61482a2a654c
parentab8db2ad7d30da4b923bfa11e5c3295446103911
A new RPC pipe!  The \pipe\echo named pipe is for testing large RPC
requests and responses and is only compiled in when --enable-developer
is passed to configure.  It includes server and client side code for
generating and responding to functions on this pipe.  The functions are:

 - AddOne: add one to the uint32 argument and return ig
 - EchoData: echo back a variable sized char array to the caller
 - SourceData: request a variable sized char array
 - SinkData: send a variable sized char array and throw it away

There's a win32 implementation of the client and server in the
junkcode CVS repository in the rpcecho-win32 subdirectory.
14 files changed:
source/Makefile.in
source/configure.in
source/include/ntdomain.h
source/include/rpc_echo.h [new file with mode: 0644]
source/include/smb.h
source/lib/util.c
source/rpc_client/cli_echo.c [new file with mode: 0644]
source/rpc_parse/parse_echo.c [new file with mode: 0644]
source/rpc_parse/parse_rpc.c
source/rpc_server/srv_echo.c [new file with mode: 0644]
source/rpc_server/srv_echo_nt.c [new file with mode: 0644]
source/rpcclient/cmd_echo.c [new file with mode: 0644]
source/rpcclient/rpcclient.c
source/smbd/nttrans.c