summaryrefslogtreecommitdiff
path: root/libcli/util/tstream.c
diff options
context:
space:
mode:
Diffstat (limited to 'libcli/util/tstream.c')
-rw-r--r--libcli/util/tstream.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/libcli/util/tstream.c b/libcli/util/tstream.c
index 8911c5d541..9c42ca1f4e 100644
--- a/libcli/util/tstream.c
+++ b/libcli/util/tstream.c
@@ -30,9 +30,7 @@ struct tstream_read_pdu_blob_state {
struct {
struct tevent_context *ev;
struct tstream_context *stream;
- NTSTATUS (*full_fn)(void *private_data,
- DATA_BLOB blob,
- size_t *packet_size);
+ tstream_read_pdu_blob_full_fn_t *full_fn;
void *full_private;
} caller;
@@ -46,9 +44,7 @@ struct tevent_req *tstream_read_pdu_blob_send(TALLOC_CTX *mem_ctx,
struct tevent_context *ev,
struct tstream_context *stream,
size_t initial_read_size,
- NTSTATUS (*full_fn)(void *private_data,
- DATA_BLOB blob,
- size_t *packet_size),
+ tstream_read_pdu_blob_full_fn_t *full_fn,
void *full_private)
{
struct tevent_req *req;