diff options
author | Simo Sorce <idra@samba.org> | 2010-07-06 11:33:15 -0400 |
---|---|---|
committer | Andreas Schneider <asn@samba.org> | 2010-09-15 12:53:42 +0200 |
commit | 5685914344d21e5fdac98c367b3dd1eba555f227 (patch) | |
tree | bc9328e59b1136935157598bf54b31935017ccd4 /source3/include | |
parent | 344260d03e9a50bce051e180df75f696e2478228 (diff) | |
download | samba-5685914344d21e5fdac98c367b3dd1eba555f227.tar.gz |
s3-rpc_server: Convert rpc_connect_spoolss_pipe into a generic interface.
This way we have one common way to open internal pipes whether they
are shortcircuited or piped to an external process.
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 6a1ab0fe10b..6fe8f641ba2 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -4163,8 +4163,12 @@ NTSTATUS rpc_pipe_open_internal(TALLOC_CTX *mem_ctx, struct client_address *client_id, struct messaging_context *msg_ctx, struct rpc_pipe_client **presult); -NTSTATUS rpc_connect_spoolss_pipe(connection_struct *conn, - struct rpc_pipe_client **spoolss_pipe); +NTSTATUS rpc_pipe_open_interface(TALLOC_CTX *mem_ctx, + const struct ndr_syntax_id *syntax, + struct auth_serversupplied_info *server_info, + struct client_address *client_id, + struct messaging_context *msg_ctx, + struct rpc_pipe_client **cli_pipe); NTSTATUS cli_rpc_pipe_open_noauth(struct cli_state *cli, const struct ndr_syntax_id *interface, struct rpc_pipe_client **presult); |