diff options
author | Bill Nagel <wnagel@tycoint.com> | 2014-11-30 10:39:14 -0500 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2014-11-30 15:56:30 +0000 |
commit | aec2e865f06669b9cb5d26cc1148d70bc418b163 (patch) | |
tree | b1089dd7cd9fbb8b465ba4724a9590c0d3fc8716 /lib/smb.h | |
parent | 56120ca04bc6c0dc4e942504c7abf018b7ef8428 (diff) | |
download | curl-aec2e865f06669b9cb5d26cc1148d70bc418b163.tar.gz |
smb: Added SMB handler interfaces
Added the SMB and SMBS handler interface structures and associated
functions required for SMB/CIFS operation.
Diffstat (limited to 'lib/smb.h')
-rw-r--r-- | lib/smb.h | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -256,4 +256,12 @@ struct smb_tree_disconnect { #endif /* BUILDING_CURL_SMB_C */ +#if !defined(CURL_DISABLE_SMB) && defined(USE_NTLM) && \ + !defined(USE_WINDOWS_SSPI) + +extern const struct Curl_handler Curl_handler_smb; +extern const struct Curl_handler Curl_handler_smbs; + +#endif /* CURL_DISABLE_SMB && USE_NTLM && USE_WINDOWS_SSPI */ + #endif /* HEADER_CURL_SMB_H */ |