summaryrefslogtreecommitdiffstats
path: root/source3/smbd/smb2_sesssetup.c
Commit message (Expand)AuthorAgeFilesLines
* s3:smb2_sesssetup: cancel and wait for pending requests on logoffStefan Metzmacher2014-03-121-4/+78
* s3:smb2_sesssetup: split smbd_smb2_logoff into an async *_send/recv pair.Jeremy Allison2014-03-121-20/+92
* s3:smb2_sesssetup: make use of smbd_smb2_generate_outbody()Stefan Metzmacher2014-03-051-2/+2
* s3:smbd/smb2 fix compiler warningsChristian Ambach2013-12-121-2/+2
* smbd: Invalidate the session correctly.Jeremy Allison2013-11-041-0/+23
* smbd:smb2: fix crash when smb2 session reauth failsMichael Adam2013-10-151-3/+17
* s3:smbd: initialize session->global before calling session_claimGregor Beck2012-10-191-7/+7
* s3:smbd: remove smbd_server_connection argument from session_claim()Gregor Beck2012-10-191-1/+1
* s3:smbd: pass smbXsrv_session instead of user_struct to session_claim() and s...Gregor Beck2012-10-191-1/+1
* Revert "Fix bug #9222 - smbd ignores the "server signing = no" setting for SM...Jeremy Allison2012-10-031-6/+0
* Fix bug #9222 - smbd ignores the "server signing = no" setting for SMB2.Jeremy Allison2012-10-031-0/+6
* Make metze happy and the code clearer :-).Jeremy Allison2012-09-121-0/+6
* Fix talloc memory heirarchy bug. If there's an SMB2 sessionsetup in flight wh...Jeremy Allison2012-09-101-5/+36
* s3:smb2_server: use smbXsrv_session->nonce_*Stefan Metzmacher2012-08-231-0/+3
* s3:smb2_sesssetup: setup global->[en|de]cryption_keyStefan Metzmacher2012-08-091-0/+36
* s3:smb2_sesssetup: set global->encryption_required and enforce itStefan Metzmacher2012-08-091-0/+22
* s3:smb2_sesssetup: remove unused code in smbd_smb2_reauth_generic_return()Stefan Metzmacher2012-08-081-9/+0
* s3:smb2_sesssetup: remove TALLOC_FREE(session) from smbd_smb2_[re]auth_generi...Stefan Metzmacher2012-08-081-9/+0
* s3:smb2_sesssetup: make use of SMBD_SMB2_* macrosStefan Metzmacher2012-08-051-8/+6
* s3:smb2_sesssetup: reject SMB2_SESSION_FLAG_BINDING requestsStefan Metzmacher2012-07-261-0/+13
* s3:smb2_sesssetup: make use of smb2srv_session_close_previous_send/recvStefan Metzmacher2012-06-251-0/+66
* s3:smb2_sesssetup: inline gensec_session_info() callStefan Metzmacher2012-06-251-25/+15
* s3:smb2_sesssetup: make use of gensec_update_send/recvStefan Metzmacher2012-06-251-10/+35
* s3:smb2_sesssetup: inline most of smbd_smb2_session_setup()Stefan Metzmacher2012-06-251-130/+99
* s3:smb2_sesssetup: implement dynamic re-authentication and expire sessionsStefan Metzmacher2012-06-251-1/+85
* s3:smbd: make use of smbXsrv_tcon and smbXsrv_session for smb2Stefan Metzmacher2012-06-251-112/+64
* s3:smb2_sesssetup: add support for SMB 2.24/3.00 signingStefan Metzmacher2012-06-251-0/+29
* s3:smb2_sesssetup: make use of the smbXsrv_session infrastructureStefan Metzmacher2012-06-251-31/+87
* s3:smbd: change user_struct->vuid to uint64_tStefan Metzmacher2012-06-061-2/+2
* s3:smbd: use 'struct user_struct' instead of typedef'ed 'user_struct'Stefan Metzmacher2012-06-061-1/+1
* s3:smb2_sesssetup: make use of nt_status_squash() in smbd_smb2_session_setup_...Stefan Metzmacher2012-05-171-1/+1
* s3:smb2_sesssetup: make the top level code async usingStefan Metzmacher2012-05-131-30/+62
* s3:smb2_sesssetup: add smbd_smb2_session_setup_send/recv as wrapperStefan Metzmacher2012-05-131-0/+105
* s3:smb2_sesssetup: pass down in_flags to smbd_smb2_session_setup()Stefan Metzmacher2012-05-131-1/+5
* s3:smb2_sesssetup: pass down in_previous_session_id to all layersStefan Metzmacher2012-05-131-2/+15
* s3:smbd: call file_close_user() before removing tree connects in conn_close_a...Stefan Metzmacher2012-03-151-0/+2
* s3:smbd: keep 'num_users' and 'users' directly under smbd_server_connectionStefan Metzmacher2012-03-061-1/+2
* s3-smbd Remove unused code now we always have SPNEGO via gensecAndrew Bartlett2012-02-161-5/+1
* s3:smbd: rework smbd_smb2_*_ntlmssp_auth* to smbd_smb2_auth_generic*Stefan Metzmacher2012-01-311-22/+28
* s3:smbd: always use the gensec code path in smb2_sesssetup.cStefan Metzmacher2012-01-311-460/+7
* s3:smb2_sessetup: call set_current_user_info() and reload_services() on successStefan Metzmacher2012-01-251-0/+11
* s3:smbd: explicitly ask for GENSEC_FEATURE_UNIX_TOKENStefan Metzmacher2012-01-121-0/+3
* s3-auth Remove ntlmssp_wrap.h which is no longer requiredAndrew Bartlett2012-01-051-1/+0
* s3-auth use gensec directly rather than via auth_generic_stateAndrew Bartlett2012-01-051-20/+20
* s3-auth Add TALLOC_CTX * to auth_generic_prepare()Andrew Bartlett2012-01-051-10/+3
* s3-auth remove auth_ntlmssp_start(), call auth_generic_start() directlyAndrew Bartlett2011-12-221-3/+3
* s3-auth rename auth_ntlmssp_prepare() -> auth_generic_prepare()Andrew Bartlett2011-12-221-3/+3
* s3:smbd: pass smbd_server_connection and a snumused function pointer to reloa...Stefan Metzmacher2011-12-151-1/+1
* s3:smbd: make use of SMB_SIGNING_* constantsStefan Metzmacher2011-11-031-2/+2
* s3-ntlmssp Remove auth_ntlmssp_want_feature()Andrew Bartlett2011-10-211-3/+3