summaryrefslogtreecommitdiff
path: root/libcli/smb/smbXcli_base.h
AgeCommit message (Collapse)AuthorFilesLines
2012-04-16libcli/smb: add smb2cli_session_get_flags()Stefan Metzmacher1-0/+1
metze
2012-03-03smbXcli: add the possiblilty to negotiate client capabilites in smb >= 2.2Michael Adam1-1/+2
Pair-Programmed-With: Stefan Metzmacher <metze@samba.org>
2012-02-27libcli/smb/smbXcli: add smb2cli_session_application_key()Stefan Metzmacher1-0/+3
metze
2012-02-27libcli/smb/smbXcli: maintain smb2 channel_signing_key separate from the ↵Stefan Metzmacher1-3/+6
signing_key The signing_key is fix across all channels and is used for session setups on a channel binding. Note: - the last session setup response is signed with the new channel signing key. - the reauth session setups are signed with the channel signing key. It's also not needed to remember the main session key. metze
2012-01-05libcli/smb: Add smbXcli_conn_samba_suicideVolker Lendecke1-0/+8
This is a pure test tool against Samba servers
2011-11-29smbXcli: add smb1cli_conn_server_{readbraw,writebraw,lockread,writeunlock}()Stefan Metzmacher1-0/+4
metze
2011-11-24smbXcli: rework smb1cli_trans.c to use smbXcli_conn/smbXcli_reqStefan Metzmacher1-0/+35
metze
2011-11-24smbXcli: add smb2cli_req_set_notify_async()Stefan Metzmacher1-0/+1
That can be used if the caller wants to be notified if the async interim response arrives. metze
2011-11-24smbXcli: add smb2cli_session_create_channel()Stefan Metzmacher1-0/+4
This makes it possible to implement SMB 2.22 Multi-Channel for testing. metze
2011-11-24s3:smb2cli: make use of smbXcli_session and setup the session key for SMB2 ↵Stefan Metzmacher1-2/+2
signing metze
2011-11-24smbXcli: add smbXcli_session infrastructureStefan Metzmacher1-0/+12
metze
2011-11-24smbXcli: add support for SMB2 multi-credit requestsStefan Metzmacher1-0/+3
metze
2011-11-24smbXcli: pass client_guid to smbXcli_conn_create()Stefan Metzmacher1-1/+3
metze
2011-11-24smbXcli: add smbXcli_negprot_*Stefan Metzmacher1-0/+12
This supports negotiation of any SMB1 or SMB2 dialect. metze
2011-11-24smbXcli: add helper functions to access the negotiated featuresStefan Metzmacher1-0/+18
metze
2011-11-24smbXcli: rework smb1cli_req_recv() to expose an iov with 3 elementsStefan Metzmacher1-3/+17
Each smb1cli_req has 3 iov elements [SMB HDR, SMB Parameter Block, SMB Data Block]. The 'inbuf' is still exposed if the caller requires it (until we fix all legacy callers). The can now pass an array of expected [status,wct] combinations, instead of just one expected min_wct. metze
2011-11-24smbXcli: rework smb2cli_req to smbXcli_conn/smbXcli_reqStefan Metzmacher1-4/+4
metze
2011-11-24libcli/smb: copy smb2cli_req_* code to smbXcli_base.cStefan Metzmacher1-0/+41
metze
2011-11-24smbXcli: rework smbXcli_base.c to use smbXcli_conn/smbXcli_reqStefan Metzmacher1-0/+106
This splits the low level smb code from 'struct cli_state' and makes it much more generic and useful for testing. metze