summaryrefslogtreecommitdiff
path: root/source4/smb_server/smb2/smb2_server.h
AgeCommit message (Collapse)AuthorFilesLines
2011-10-31s4:smb_server/smb2: correctly implement related compound requestsStefan Metzmacher1-0/+2
We need to remember the session id and tree id. metze
2009-06-09s4:smb2srv: correctly fail remaining compounded requests after a failureStefan Metzmacher1-0/+3
metze
2008-12-05Let ntvfs request transport close via ntvfs_request stateSam Liddicott1-0/+10
[I can't swear that this covers all the smb2 cases, there are some reply functions that I can't trace properly] Add NTVFS_ASYNC_STATE_CLOSE bit to ntvfs_request->async_states->state so that the ntvfs layer can signify that the client transport should be closed, most useful for proxy servies, and most likely due to a forwarding transport having been closed. Signed-off-by: Sam Liddicott <sam@liddicott.com> Signed-off-by: Stefan Metzmacher <metze@samba.org>
2008-09-24cope with body_size zero in SMB2 receiveAndrew Tridgell1-1/+2
2008-08-14smb2srv: sign replies when the request was also signedStefan Metzmacher1-0/+2
metze (This used to be commit dd2f4f7a491debcc30e590f571272afd99e52940)
2008-05-22badly formed SMB2 packets get NT_STATUS_INVALID_PARAMETERAndrew Tridgell1-2/+2
(This used to be commit 1c5dd2d1b655218f875a4e512ed3e94fee624fe4)
2008-05-21fixed SMB2 lockingAndrew Tridgell1-1/+1
- SMB2 locking is different in several ways from SMB locking. To fix it properly we will need a new generic mapping structure for locking, but for now do a best effort mapping - added locking to gentest_smb2 (This used to be commit ea6d9cf602302adafe0f9d5f5f90a9b26d1ead6f)
2007-10-10r23792: convert Samba4 to GPLv3Andrew Tridgell1-3/+2
There are still a few tidyups of old FSF addresses to come (in both s3 and s4). More commits soon. (This used to be commit fcf38a38ac691abd0fa51b89dc951a08e89fdafa)
2007-10-10r22866: handle incoming chained smb2 requests in our server code to letStefan Metzmacher1-0/+7
the windows explorer in longhorn beta3 work. metze (This used to be commit 2390c9f24daccec917608cac0870890cdc73cb1c)
2007-10-10r18301: I discovered how to load the warnings from a build farm build intoAndrew Tridgell1-2/+2
emacs compile mode (hint, paste to a file, and compile as "cat filename"). This allowed me to fix nearly all the warnings for a IA_64 SuSE build very quickly. (This used to be commit eba6c84efff735bb0ca941ac4b755ce2b0591667)
2007-10-10r17084: implement SMB2 Cancel in the server,Stefan Metzmacher1-1/+10
that makes it possible for clients to cancel async requests, like NOTIFY... metze (This used to be commit eaccd3c4353833daf584aaea4d7e8f11004a8072)
2007-10-10r16950: remove the smb mid from the ntvfs layer and keep a list of pendingStefan Metzmacher1-1/+0
requests on the smbsrv_connection, to be able to match then on ntcancel metze (This used to be commit 04f0d3d03179b6060fd013b867d13caa92ec6460)
2007-10-10r16870: copy over the status from the ntvfs request to the smb2 requestStefan Metzmacher1-0/+2
so that smb2srv_setup_reply() doesn't push uninitialized data (found by valgrind) metze (This used to be commit 1a1fd2747d12663ff1084a3bc85e85c74188edb7)
2007-10-10r16738: vista beta2 use FILE_CLOSED as error for an invalid file handleStefan Metzmacher1-1/+1
metze (This used to be commit fa35ddcaf9bbeaa4780aa3497cdff56b02af0ab9)
2007-10-10r16456: return on error...Stefan Metzmacher1-0/+2
metze (This used to be commit 44ab067d146503bd1cc008cf01c08b91fb14b204)
2007-10-10r16410: remove some warnings of talloc_steal() usage without targetStefan Metzmacher1-1/+1
I only commit this as this is used in a global macro tridge: we should try to get rid of this warning without using (void)talloc_steal(ctx, ptr); everywhere!!! metze (This used to be commit 3f8ce6d680b0c86abc698b8f9c6d8840da3ffd35)
2007-10-10r15803: the SMB2 server gives NT_STATUS_NOT_FOUND instead of ↵Stefan Metzmacher1-1/+1
NT_STATUS_INVALID_HANDLE metze (This used to be commit aa98aad0975e59fc8cf56c624f728b33ab54e099)
2007-10-10r15802: merge tridge's fix to the SMB2 serverStefan Metzmacher1-4/+1
metze (This used to be commit 2ea15e9d28bca358989a565576ea7e8d9462e924)
2007-10-10r15753: implement SMB2 CreateStefan Metzmacher1-0/+97
metze (This used to be commit 65b67a8af6b661fe6eeabf45563c6aba12a6660a)
2007-10-10r15746: - reorder elements of smb2srv_requestStefan Metzmacher1-7/+15
- move SMB2 specific elements to the end metze (This used to be commit 7d2087bd1b5036f79e205d6e17f2bca78576299e)
2007-10-10r14380: Reduce the size of structs.hJelmer Vernooij1-0/+2
(This used to be commit 1a16a6f1dfa66499af43a6b88b3ea69a6a75f1fe)
2007-10-10r12542: Move some more prototypes out to seperate headersJelmer Vernooij1-0/+2
(This used to be commit 0aca5fd5130d980d07398f3291d294202aefe3c2)
2007-10-10r11789: - add the start of a SMB2 serverStefan Metzmacher1-0/+50
- 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)