diff options
author | Stefan Metzmacher <metze@samba.org> | 2012-08-06 10:04:48 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2012-08-07 11:16:36 +0200 |
commit | f69ed57d0faff446f2c66591cef941dfc1675881 (patch) | |
tree | f6416f8df98eda2aaf54b519066f030d118d368a /source3/smbd | |
parent | 46f7a60e787396af1a061f39ddca699e296b0560 (diff) | |
download | samba-f69ed57d0faff446f2c66591cef941dfc1675881.tar.gz samba-f69ed57d0faff446f2c66591cef941dfc1675881.tar.bz2 samba-f69ed57d0faff446f2c66591cef941dfc1675881.zip |
s3:smb2_server: add .need_tcon to smbd_smb2_dispatch_table
metze
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/smb2_server.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/source3/smbd/smb2_server.c b/source3/smbd/smb2_server.c index d878bd2a9b..6156370c25 100644 --- a/source3/smbd/smb2_server.c +++ b/source3/smbd/smb2_server.c @@ -36,6 +36,7 @@ static const struct smbd_smb2_dispatch_table { uint16_t opcode; const char *name; bool need_session; + bool need_tcon; } smbd_smb2_table[] = { #define _OP(o) .opcode = o, .name = #o { @@ -51,27 +52,35 @@ static const struct smbd_smb2_dispatch_table { },{ _OP(SMB2_OP_TDIS), .need_session = true, + .need_tcon = true, },{ _OP(SMB2_OP_CREATE), .need_session = true, + .need_tcon = true, },{ _OP(SMB2_OP_CLOSE), .need_session = true, + .need_tcon = true, },{ _OP(SMB2_OP_FLUSH), .need_session = true, + .need_tcon = true, },{ _OP(SMB2_OP_READ), .need_session = true, + .need_tcon = true, },{ _OP(SMB2_OP_WRITE), .need_session = true, + .need_tcon = true, },{ _OP(SMB2_OP_LOCK), .need_session = true, + .need_tcon = true, },{ _OP(SMB2_OP_IOCTL), .need_session = true, + .need_tcon = true, },{ _OP(SMB2_OP_CANCEL), },{ @@ -79,18 +88,23 @@ static const struct smbd_smb2_dispatch_table { },{ _OP(SMB2_OP_FIND), .need_session = true, + .need_tcon = true, },{ _OP(SMB2_OP_NOTIFY), .need_session = true, + .need_tcon = true, },{ _OP(SMB2_OP_GETINFO), .need_session = true, + .need_tcon = true, },{ _OP(SMB2_OP_SETINFO), .need_session = true, + .need_tcon = true, },{ _OP(SMB2_OP_BREAK), .need_session = true, + .need_tcon = true, } }; |