diff options
author | Günther Deschner <gd@samba.org> | 2009-09-10 22:32:34 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-09-11 09:59:04 +0200 |
commit | bea8e5fa6038d5abd2ec1e12f9005c4a04abb79f (patch) | |
tree | f7fd229b41866ea6b4d8fe5325fd7eb7b78aac9a /source3/include | |
parent | 032e01e7c13724d057b5744d7d79613449c2f24f (diff) | |
download | samba-bea8e5fa6038d5abd2ec1e12f9005c4a04abb79f.tar.gz samba-bea8e5fa6038d5abd2ec1e12f9005c4a04abb79f.tar.bz2 samba-bea8e5fa6038d5abd2ec1e12f9005c4a04abb79f.zip |
s3-rpc_client: add dcerpc_transport_t to cli_rpc_pipe_open_schannel().
Guenther
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 297d3fb05d..abc76e8e02 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -5337,12 +5337,14 @@ NTSTATUS get_schannel_session_key(struct cli_state *cli, struct rpc_pipe_client **presult); NTSTATUS cli_rpc_pipe_open_schannel_with_key(struct cli_state *cli, const struct ndr_syntax_id *interface, + enum dcerpc_transport_t transport, enum pipe_auth_level auth_level, const char *domain, struct netlogon_creds_CredentialState **pdc, struct rpc_pipe_client **presult); NTSTATUS cli_rpc_pipe_open_ntlmssp_auth_schannel(struct cli_state *cli, const struct ndr_syntax_id *interface, + enum dcerpc_transport_t transport, enum pipe_auth_level auth_level, const char *domain, const char *username, @@ -5350,6 +5352,7 @@ NTSTATUS cli_rpc_pipe_open_ntlmssp_auth_schannel(struct cli_state *cli, struct rpc_pipe_client **presult); NTSTATUS cli_rpc_pipe_open_schannel(struct cli_state *cli, const struct ndr_syntax_id *interface, + enum dcerpc_transport_t transport, enum pipe_auth_level auth_level, const char *domain, struct rpc_pipe_client **presult); |