From 910d61bcd1fbfc6fc406d4384f305f5210e92d56 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 18 Nov 2005 14:13:49 +0000 Subject: r11789: - add the start of a SMB2 server - it does Negprot and SessionSetup yet the rest returns NT_STATUS_NOT_IMPLEMENTED - it's off by default, enable with: smbsrv:enable smb2 = yes - negotition in the SMB Negprot isn't supported yet - it's only tested with smbtorture SMB2-CONNECT not with vista as client metze (This used to be commit 08b31d5f618d2e416cb9812ad3a49754cd7212b8) --- source4/include/structs.h | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'source4/include') diff --git a/source4/include/structs.h b/source4/include/structs.h index 7a546f9056..68f7f9af14 100644 --- a/source4/include/structs.h +++ b/source4/include/structs.h @@ -146,14 +146,19 @@ struct reg_diff_file; struct rap_NetShareEnum; struct rap_NetServerEnum2; -struct smbsrv_request; -struct smbsrv_tcon; -struct smb_signing_context; -struct smbsrv_connection; struct auth_context; struct auth_method_context; + +struct smb_signing_context; + +struct smbsrv_session; +struct smbsrv_tcon; +struct smbsrv_connection; + +struct smbsrv_request; struct request_buffer; +struct smb2srv_request; struct smb2_request_buffer; struct ntvfs_context; -- cgit