diff options
author | Stefan Metzmacher <metze@samba.org> | 2011-11-02 17:25:45 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-11-03 16:55:11 +0100 |
commit | 18205ac7adfa4674ee6bfebbcf01bb862c3473b2 (patch) | |
tree | d3c9c6b99e1a070b11451a45a83d471b3abdf773 /libcli/smb/smb_constants.h | |
parent | ebb9d4dc542eefbad8bb3d36e3b0ddb65402e192 (diff) | |
download | samba-18205ac7adfa4674ee6bfebbcf01bb862c3473b2.tar.gz |
libcli/smb: add SMB_SIGNING_DEFAULT
metze
Diffstat (limited to 'libcli/smb/smb_constants.h')
-rw-r--r-- | libcli/smb/smb_constants.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/libcli/smb/smb_constants.h b/libcli/smb/smb_constants.h index e7898f89c71..4bd48e3c5b6 100644 --- a/libcli/smb/smb_constants.h +++ b/libcli/smb/smb_constants.h @@ -88,8 +88,12 @@ enum protocol_types { }; enum smb_signing_setting { - SMB_SIGNING_OFF, SMB_SIGNING_SUPPORTED, - SMB_SIGNING_REQUIRED, SMB_SIGNING_AUTO}; + SMB_SIGNING_DEFAULT, + SMB_SIGNING_OFF, + SMB_SIGNING_SUPPORTED, + SMB_SIGNING_REQUIRED, + SMB_SIGNING_AUTO +}; /* types of buffers in core SMB protocol */ #define SMB_DATA_BLOCK 0x1 |