summaryrefslogtreecommitdiff
path: root/source3/libsmb/cliconnect.c
AgeCommit message (Expand)AuthorFilesLines
2011-10-24libcli/smb: move source3/libsmb/read_smb.* to the toplevelStefan Metzmacher1-1/+0
2011-10-18ntlmssp: Move ntlmssp code to auth/ntlmsspAndrew Bartlett1-1/+1
2011-10-14Fix const warning.Jeremy Allison1-1/+1
2011-10-12s3:utils change data_blob_dup_talloc() to take a DATA_BLOB by valueGregor Beck1-1/+1
2011-09-28s3:libsmb: remove unused TALLOC_FREE(subreq) calls inStefan Metzmacher1-5/+0
2011-09-28s3:libsmb: call TALLOC_FREE(subreq) directly after cli_sesssetup_blob_recv()Stefan Metzmacher1-3/+2
2011-09-22s3: Fix Coverity ID 2619: UNINITVolker Lendecke1-0/+2
2011-09-22s3: Fix Coverity ID 2618: UNINITVolker Lendecke1-0/+2
2011-09-15s3:libsmb: move cli->server{zone,time} to cli->conn.smb1.server.{time_zone,sy...Stefan Metzmacher1-8/+14
2011-09-15s3:libsmb: split cli->secblob into cli->conn.smb1.server.{guid,gss_blob,chall...Stefan Metzmacher1-12/+75
2011-09-15s3:libsmb: make use of cli_state_server_gss_blob()Stefan Metzmacher1-5/+9
2011-09-15s3:libsmb: make use of cli_state_server_challenge()Stefan Metzmacher1-11/+8
2011-09-15s3:libsmb: remove the guid from the cli->secblob in spnego modeStefan Metzmacher1-4/+8
2011-09-15s3:libsmb: make sure cli->secblob.length is 8 if we get a challengeStefan Metzmacher1-2/+2
2011-09-15s3:libsmb: restructure cli_negprot_done() secblob handling a bitStefan Metzmacher1-10/+13
2011-09-15s3:libsmb: move cli->sesskey to cli->conn.smb1.server.session_keyStefan Metzmacher1-2/+5
2011-09-15s3:libsmb: detect lock_read and write_unlock supportStefan Metzmacher1-0/+15
2011-09-15s3:libsmb: move cli->*braw_supported to cli->conn.smb1.server.*brawStefan Metzmacher1-4/+9
2011-09-15s3:libsmb: move cli->sec_mode to cli->conn.smb1.server.security_modeStefan Metzmacher1-5/+8
2011-09-15s3:libsmb: move cli->max_mux to cli->conn.smb1.server.max_muxStefan Metzmacher1-4/+7
2011-09-15s3:libsmb: move cli->max_xmit to cli->conn.smb1.max_xmitStefan Metzmacher1-6/+12
2011-09-15s3:libsmb: move cli->capabilities to cli->conn.smb1.capabilitiesStefan Metzmacher1-4/+9
2011-09-15s3:libsmb: move cli->protocol to cli->conn.protocolStefan Metzmacher1-4/+4
2011-09-15s3:libsmb: pass max_protocol to cli_negprot()Stefan Metzmacher1-5/+6
2011-09-15s3:libsmb: add basic max_protocol support in cli_negprot()Stefan Metzmacher1-7/+15
2011-09-15s3:libsmb: use local variables in cli_state_create()Stefan Metzmacher1-5/+0
2011-09-15s3:libsmb: make use of SMB_CAP_BOTH/CLIENT_MASK in cli_session_setup_capabili...Stefan Metzmacher1-13/+25
2011-09-15s3:libsmb: calculate the negotiated SMB1 capabilities in cli_negprot_done()Stefan Metzmacher1-6/+12
2011-09-15s3:libsmb: no need to reset capabilities in cli_session_setup_lanman2()Stefan Metzmacher1-10/+0
2011-09-15s3:libsmb: make sure we always set cli->capabilities at the end of cli_negpro...Stefan Metzmacher1-3/+6
2011-09-14s3:libsmb: remove unused cli->is_sambaStefan Metzmacher1-22/+1
2011-09-14Fix bug #8453 - smbclient segfaults when dialect option -m is used for legacy...Jeremy Allison1-0/+13
2011-09-14s3:libsmb: make use of new advanded SMB signingStefan Metzmacher1-31/+28
2011-09-13s3:libsmb: make use of cli_state_server_session_key()Stefan Metzmacher1-4/+4
2011-09-13s3:libsmb: make use of cli_state_security_mode()Stefan Metzmacher1-9/+12
2011-09-13s3:libsmb: make sure cli->max_mux is valid in the return of the serverStefan Metzmacher1-0/+6
2011-09-13s3:libsmb: check that max_xmit is not less than 1024Stefan Metzmacher1-0/+5
2011-09-13s3:libsmb: better expect a max_xmit of 1024 instead of 0xFFFF for the CORE pr...Stefan Metzmacher1-0/+1
2011-09-13s3:libsmb: make use of cli_state_available_size() in cli_sesssetup_blob_send()Stefan Metzmacher1-6/+8
2011-09-12s3:libsmb: check the wct of the incoming SMBnegprot responsesStefan Metzmacher1-0/+10
2011-09-08s3:libsmb: add CLI_FULL_CONNECTION_FORCE_ASCIIStefan Metzmacher1-1/+2
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 Metzmacher1-3/+2
2011-09-08s3:libsmb: pass CLI_FULL_CONNECTION_* flags to cli_state_create()Stefan Metzmacher1-1/+2
2011-08-10s3:libsmb: make cli_session_setup_spnego() staticStefan Metzmacher1-2/+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 Metzmacher1-1/+1
2011-08-02s3:libsmb/cli*: make use of cli_state_protocol()Stefan Metzmacher1-10/+10
2011-08-02s3:libsmb/cli*: make use of cli_state_capabilities()Stefan Metzmacher1-4/+4