summaryrefslogtreecommitdiff
path: root/source4/smb_server/smb2/config.mk
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2005-11-18 14:13:49 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:46:28 -0500
commit910d61bcd1fbfc6fc406d4384f305f5210e92d56 (patch)
tree3d988dc6ec062ef2a8a215253c19559cecd2fb0a /source4/smb_server/smb2/config.mk
parent764dd6027b384640a075a9b56bc83e061ff9438e (diff)
downloadsamba-910d61bcd1fbfc6fc406d4384f305f5210e92d56.tar.gz
samba-910d61bcd1fbfc6fc406d4384f305f5210e92d56.tar.bz2
samba-910d61bcd1fbfc6fc406d4384f305f5210e92d56.zip
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)
Diffstat (limited to 'source4/smb_server/smb2/config.mk')
-rw-r--r--source4/smb_server/smb2/config.mk14
1 files changed, 14 insertions, 0 deletions
diff --git a/source4/smb_server/smb2/config.mk b/source4/smb_server/smb2/config.mk
new file mode 100644
index 0000000000..105b646e31
--- /dev/null
+++ b/source4/smb_server/smb2/config.mk
@@ -0,0 +1,14 @@
+#######################
+# Start SUBSYSTEM SMB2_PROTOCOL
+[SUBSYSTEM::SMB2_PROTOCOL]
+INIT_OBJ_FILES = \
+ receive.o
+ADD_OBJ_FILES = \
+ negprot.o \
+ sesssetup.o \
+ tcon.o \
+ fileio.o
+REQUIRED_SUBSYSTEMS = \
+ NTVFS LIBPACKET LIBCLI_SMB2
+# End SUBSYSTEM SMB2_PROTOCOL
+#######################