summaryrefslogtreecommitdiff
path: root/source3/rpc_server/rpc_pipes.h
AgeCommit message (Collapse)AuthorFilesLines
2012-07-06s3-rpc_server: Make it possible to use more rpc exceptions.Andreas Schneider1-15/+2
2011-07-21s3-rpc_server: Create common function to allocate pipes_structSimo Sorce1-0/+8
Avoid code duplication and fix bug where a new pipe was not added to InternalPipes upon creation in make_server_pipes_struct() Signed-off-by: Andreas Schneider <asn@samba.org> Autobuild-User: Andreas Schneider <asn@cryptomilk.org> Autobuild-Date: Thu Jul 21 19:50:02 CEST 2011 on sn-devel-104
2011-07-21s3-rpc_server: Move pipe/handles functionsSimo Sorce1-0/+213
Put InternalPipes related functions in rpc_handles.c and out of rpc_ncacn_np.c rpc_handles.c is the only file that really uses them after all and ncacn_np.c is the wrong place for that stuff. While ther remove unnecessary wrapper functions now that the InternalPipes static variable is directly accessible. Also move all pipes_struct related header stuff in its own rpc_pipes.h header. Signed-off-by: Andreas Schneider <asn@samba.org>