summaryrefslogtreecommitdiff
path: root/source3/libsmb
AgeCommit message (Expand)AuthorFilesLines
2011-09-08s3:libsmb: add CLI_FULL_CONNECTION_FORCE_ASCIIStefan Metzmacher2-1/+10
2011-09-08s3:libsmb: add CLI_FULL_CONNECTION_FORCE_DOS_ERRORSStefan Metzmacher1-1/+4
2011-09-08s3:libsmb: don't handle CLI_FULL_CONNECTION_* flags in cli_full_connection()Stefan Metzmacher1-4/+0
2011-09-08s3:libsmb: don't handle CLI_FULL_CONNECTION_* flags in cli_start_connection()Stefan Metzmacher1-13/+0
2011-09-08s3:libsmb: pass CLI_FULL_CONNECTION_* flags via cli_connect_nb()Stefan Metzmacher5-24/+32
2011-09-08s3:libsmb: pass CLI_FULL_CONNECTION_* flags to cli_state_create()Stefan Metzmacher3-3/+26
2011-09-07s3:smb2cli: let smb2cli_req_create() use the give pid, uid and tid valuesStefan Metzmacher1-3/+3
2011-09-07s3:smb2cli: pass the uid to the SMB2_SESSION_SETUP to support multi-leg-authStefan Metzmacher1-1/+2
2011-09-07s3:smb2cli: fix marshalling of smb2_create_blobs in smb2cli_create()Stefan Metzmacher1-3/+5
2011-09-07s3:smb2cli: don't terminate the pathname in smb2cli_query_directory()Stefan Metzmacher1-1/+6
2011-09-07s3:smb2cli: don't terminate the pathname in smb2cli_create()Stefan Metzmacher1-3/+10
2011-09-07s3:smb2cli: don't terminate the pathname in smb2cli_tcon()Stefan Metzmacher1-1/+6
2011-09-07s3:smb2cli: SMB2_TCON needs one dyn byte to that the structure size check works.Stefan Metzmacher1-0/+6
2011-09-07s3:smb2cli: SMB2_WRITE needs one dyn byte to that the structure size check wo...Stefan Metzmacher1-1/+12
2011-09-07s3:smb2cli: SMB2_READ needs one dyn byte to that the structure size check works.Stefan Metzmacher1-1/+2
2011-09-07s3:smb2cli: SMB2_QUERY_DIRECTORY needs one dyn byte to that the structure siz...Stefan Metzmacher1-0/+6
2011-09-07s3:smb2cli: SMB2_CREATE needs one dyn byte to that the structure size check w...Stefan Metzmacher1-1/+1
2011-09-07s3:smb2cli: SMB2_SESSION_SETUP needs one dyn byte to that the structure size ...Stefan Metzmacher1-1/+12
2011-09-05s3:smb2cli: make sure we don't try to send requests on a disconnected cli_stateStefan Metzmacher1-0/+5
2011-09-05s3:smb2cli: make sure requests are not finished, when we send when to the net...Stefan Metzmacher1-0/+4
2011-09-05s3:smb2cli: disconnect the connection, if we're out of message idsStefan Metzmacher1-1/+15
2011-09-05s3:smb2cli: don't use state->cli->smb2.mid++ as macro argumentStefan Metzmacher1-1/+5
2011-09-03s3:smb2cli: ask for a session key in smb2cli_sesssetup_send()Stefan Metzmacher1-0/+3
2011-08-29s3-lib: If we create a pipe socket, don't start to listen.Andreas Schneider1-0/+6
2011-08-28s3:libsmb: make cli_session_request_send/recv() staticStefan Metzmacher1-6/+6
2011-08-28s3:libsmb: move cli_session_request*() to smbsock_connect.cStefan Metzmacher2-127/+129
2011-08-28s3:libsmb: move cli_smb_oplock_break_waiter*() to clioplock.cStefan Metzmacher3-79/+86
2011-08-28s3:libsmb: use cli_smb_req_set_mid() in cli_smb_oplock_break_waiter_send()Stefan Metzmacher1-3/+1
2011-08-28s3:libsmb: let cli_smb_req_mid() return the mid set by cli_smb_req_set_mid()Stefan Metzmacher1-0/+5
2011-08-23s/event_context/tevent_context/ in smbsock_any_connectVolker Lendecke1-2/+2
2011-08-23s/event_context/tevent_context/ in smbsock_connectVolker Lendecke1-2/+2
2011-08-12s3:smb2cli: pass more fields to smb2cli_req_create()/smb2cli_req_send()Stefan Metzmacher11-16/+80
2011-08-12s3:smb2cli: allow 32bit dyn_len in smb2cli_req_create()/smb2cli_req_send()Stefan Metzmacher2-5/+5
2011-08-12s3:libsmb: keep a cli_smb_state->one_wayStefan Metzmacher1-12/+19
2011-08-12s3:libsmb: abstract the incoming dispatch function via a function pointerStefan Metzmacher1-5/+6
2011-08-12s3:libsmb: split out cli_state_dispatch_smb1() from cli_smb_received()Stefan Metzmacher1-45/+66
2011-08-12s3:libsmb: add missing TALLOC_FREE(frame) to cli_smb_received()Stefan Metzmacher1-0/+1
2011-08-12s3:libsmb: keep the request order in cli_smb_req_unset_pending()Stefan Metzmacher1-1/+3
2011-08-12s3:libsmb: use tevent_req_defer_callback() unless there's only one request in...Stefan Metzmacher1-4/+41
2011-08-12s3:libsmb: make use of cli_state_receive_next() in cli_smb_received()Stefan Metzmacher1-17/+2
2011-08-12s3:libsmb: notify all request about failures in cli_smb_req_set_pending()Stefan Metzmacher1-0/+7
2011-08-12s3:libsmb: split out cli_state_receive_next() from cli_smb_req_set_pending()Stefan Metzmacher1-2/+25
2011-08-12s3:libsmb: use talloc_stackframe() in cli_smb_received()Stefan Metzmacher1-8/+12
2011-08-12s3:libsmb: call cli_smb_req_unset_pending() before tevent_req_done() also for...Stefan Metzmacher1-0/+1
2011-08-12s3:libsmb: reset the destructor in cli_smb_req_unset_pending()Stefan Metzmacher1-1/+2
2011-08-12s3:libsmb: add cli_state_notify_pending() and use itStefan Metzmacher1-25/+45
2011-08-10s3:libsmb: make cli_session_setup_spnego() staticStefan Metzmacher2-6/+4
2011-08-10s3:libsmb: pass remote_realm to cli_session_setup_spnego() in cli_session_set...Stefan Metzmacher1-1/+3
2011-08-10s3:libsmb: store the remote_realm on the cli_stateStefan Metzmacher3-1/+16
2011-08-09s3:libsmb/cli*: use CLI_BUFFER_SIZE instead of cli->max_xmitStefan Metzmacher4-14/+14