libcli/util: add tstream_read_pdu_blob_send/recv
[metze/samba/wip.git] / libcli / util / tstream.h
1 /*
2  *  Unix SMB/CIFS implementation.
3  *
4  *  Copyright (C) Stefan Metzmacher 2009
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 3 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, see <http://www.gnu.org/licenses/>.
18  */
19
20 #ifdef _LIBCLI_UTIL_TSTREAM_H_
21 #define _LIBCLI_UTIL_TSTREAM_H_
22
23 struct tevent_req *tstream_read_pdu_blob_send(TALLOC_CTX *mem_ctx,
24                                 struct tevent_context *ev,
25                                 struct tstream_context *stream,
26                                 size_t inital_read_size,
27                                 NTSTATUS (*full_fn_t)(void *private_data,
28                                                       DATA_BLOB blob,
29                                                       size_t *packet_size);
30                                 void *full_fn_private);
31 NTSTATUS tstream_read_pdu_blob_recv(struct tevent_req *req,
32                                     TALLOC_CTX *mem_ctx,
33                                     DATA_BLOB *pdu_blob);
34
35 #endif /* _LIBCLI_UTIL_TSTREAM_H_ */