diff options
author | Stefan Metzmacher <metze@samba.org> | 2009-12-30 11:55:23 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-03-24 17:34:54 +0100 |
commit | eb1780981252f05c792a1e40b7d0471f5b670ef5 (patch) | |
tree | 66c246bbe420ed1f6bfe44a93cd5471cce39006c /source3/include/proto.h | |
parent | eca118614c1431855c88b9f43457c0d2d6502ebe (diff) | |
download | samba-eb1780981252f05c792a1e40b7d0471f5b670ef5.tar.gz samba-eb1780981252f05c792a1e40b7d0471f5b670ef5.tar.bz2 samba-eb1780981252f05c792a1e40b7d0471f5b670ef5.zip |
s3:ntlmssp: pass names to ntlmssp_server_start() and store them in ntlmssp_state
Inspired by the NTLMSSP merge work by Andrew Bartlett.
metze
Signed-off-by: Günther Deschner <gd@samba.org>
Diffstat (limited to 'source3/include/proto.h')
-rw-r--r-- | source3/include/proto.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index b3f22edba4..de2923938b 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -3210,7 +3210,13 @@ NTSTATUS ntlmssp_update(struct ntlmssp_state *ntlmssp_state, const DATA_BLOB in, DATA_BLOB *out) ; void ntlmssp_end(struct ntlmssp_state **ntlmssp_state); DATA_BLOB ntlmssp_weaken_keys(struct ntlmssp_state *ntlmssp_state, TALLOC_CTX *mem_ctx); -NTSTATUS ntlmssp_server_start(struct ntlmssp_state **ntlmssp_state); +NTSTATUS ntlmssp_server_start(TALLOC_CTX *mem_ctx, + bool is_standalone, + const char *netbios_name, + const char *netbios_domain, + const char *dns_name, + const char *dns_domain, + struct ntlmssp_state **ntlmssp_state); NTSTATUS ntlmssp_client_start(struct ntlmssp_state **ntlmssp_state); /* The following definitions come from libsmb/ntlmssp_sign.c */ |