diff options
author | Luke Leighton <lkcl@samba.org> | 1998-10-07 15:22:49 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1998-10-07 15:22:49 +0000 |
commit | 2fef8f2e87f61043e3f1a2cf7d1f2a4ff9f119ff (patch) | |
tree | 38766ed833d7e396b80e4c0086950b6665715df6 /source3/rpc_server | |
parent | 3d601dafe907861dfb9447085e85a1213fe19b91 (diff) | |
download | samba-2fef8f2e87f61043e3f1a2cf7d1f2a4ff9f119ff.tar.gz samba-2fef8f2e87f61043e3f1a2cf7d1f2a4ff9f119ff.tar.bz2 samba-2fef8f2e87f61043e3f1a2cf7d1f2a4ff9f119ff.zip |
dce/rpc
(This used to be commit 34afa638f6f7bb145ec094510ac58f7a22dfc3aa)
Diffstat (limited to 'source3/rpc_server')
-rw-r--r-- | source3/rpc_server/srv_pipe_hnd.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/source3/rpc_server/srv_pipe_hnd.c b/source3/rpc_server/srv_pipe_hnd.c index cb1ec963d9..e898a8606f 100644 --- a/source3/rpc_server/srv_pipe_hnd.c +++ b/source3/rpc_server/srv_pipe_hnd.c @@ -154,6 +154,20 @@ pipes_struct *open_rpc_pipe_p(char *pipe_name, /**************************************************************************** + writes data to a pipe. + ****************************************************************************/ +int write_pipe(pipes_struct *p, char *data, int n) +{ + DEBUG(6,("write_pipe: %x", p->pnum)); + + DEBUG(6,("name: %s open: %s len: %d", + p->name, BOOLSTR(p->open), n)); + + return -1; +} + + +/**************************************************************************** reads data from a pipe. headers are interspersed with the data at regular intervals. by the time |