From d23a1935e8180090474cbbba878d5bc5903579c6 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 19 May 2009 10:45:38 +0200 Subject: s3:param: add PROTOCOL_SMB2 metze --- source3/include/smb.h | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'source3/include') diff --git a/source3/include/smb.h b/source3/include/smb.h index fed7468f3e..abcd49451c 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -1518,7 +1518,15 @@ char *strdup(char *s); /* protocol types. It assumes that higher protocols include lower protocols as subsets */ -enum protocol_types {PROTOCOL_NONE,PROTOCOL_CORE,PROTOCOL_COREPLUS,PROTOCOL_LANMAN1,PROTOCOL_LANMAN2,PROTOCOL_NT1}; +enum protocol_types { + PROTOCOL_NONE, + PROTOCOL_CORE, + PROTOCOL_COREPLUS, + PROTOCOL_LANMAN1, + PROTOCOL_LANMAN2, + PROTOCOL_NT1, + PROTOCOL_SMB2 +}; /* security levels */ enum security_types {SEC_SHARE,SEC_USER,SEC_SERVER,SEC_DOMAIN,SEC_ADS}; -- cgit