2008-02-28 14:41:25 +01:00
/*
Unix SMB / CIFS implementation .
Infrastructure for async SMB client requests
Copyright ( C ) Volker Lendecke 2008
This program is free software ; you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation ; either version 3 of the License , or
( at your option ) any later version .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
You should have received a copy of the GNU General Public License
along with this program . If not , see < http : //www.gnu.org/licenses/>.
*/
2008-08-25 14:40:15 +02:00
# ifndef __ASYNC_SMB_H__
# define __ASYNC_SMB_H__
2011-05-06 12:53:38 +02:00
struct cli_state ;
2008-02-28 14:41:25 +01:00
2009-04-05 20:18:45 +02:00
struct tevent_req * cli_smb_req_create ( TALLOC_CTX * mem_ctx ,
2011-10-25 14:26:17 +02:00
struct tevent_context * ev ,
2009-04-05 20:18:45 +02:00
struct cli_state * cli ,
uint8_t smb_command ,
uint8_t additional_flags ,
uint8_t wct , uint16_t * vwv ,
int iov_count ,
struct iovec * bytes_iov ) ;
2009-05-14 10:13:12 +08:00
NTSTATUS cli_smb_req_send ( struct tevent_req * req ) ;
2009-04-05 20:18:45 +02:00
size_t cli_smb_wct_ofs ( struct tevent_req * * reqs , int num_reqs ) ;
2009-05-12 14:47:02 +02:00
NTSTATUS cli_smb_chain_send ( struct tevent_req * * reqs , int num_reqs ) ;
2009-04-05 20:18:45 +02:00
uint16_t cli_smb_req_mid ( struct tevent_req * req ) ;
void cli_smb_req_set_mid ( struct tevent_req * req , uint16_t mid ) ;
2011-06-09 11:49:48 +02:00
uint32_t cli_smb_req_seqnum ( struct tevent_req * req ) ;
void cli_smb_req_set_seqnum ( struct tevent_req * req , uint32_t seqnum ) ;
2011-10-25 14:26:17 +02:00
struct tevent_req * cli_smb_send ( TALLOC_CTX * mem_ctx , struct tevent_context * ev ,
2009-04-05 20:18:45 +02:00
struct cli_state * cli ,
uint8_t smb_command , uint8_t additional_flags ,
uint8_t wct , uint16_t * vwv ,
uint32_t num_bytes ,
const uint8_t * bytes ) ;
2010-02-20 09:53:58 +01:00
NTSTATUS cli_smb_recv ( struct tevent_req * req ,
TALLOC_CTX * mem_ctx , uint8_t * * pinbuf ,
uint8_t min_wct , uint8_t * pwct , uint16_t * * pvwv ,
2009-04-05 20:18:45 +02:00
uint32_t * pnum_bytes , uint8_t * * pbytes ) ;
2008-08-25 14:40:15 +02:00
# endif