diff options
author | Stefan Metzmacher <metze@samba.org> | 2009-03-12 09:02:02 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2009-03-12 11:03:50 +0100 |
commit | 2fdbafbf5475e8936fb5bc3e3bafc7ee19a9b705 (patch) | |
tree | 1bd64fc48aa1c7e71befa877458a467d45e4bbaf /source3/include | |
parent | a0a9c5d1709e81a1503c7326147b3d77ab4328c9 (diff) | |
download | samba-2fdbafbf5475e8936fb5bc3e3bafc7ee19a9b705.tar.gz samba-2fdbafbf5475e8936fb5bc3e3bafc7ee19a9b705.tar.bz2 samba-2fdbafbf5475e8936fb5bc3e3bafc7ee19a9b705.zip |
Revert "s3:libsmb: add an option to cli_push to let the caller provide the buffers"
This reverts commit 9579a6f193f570e4ce2af80f4aac7c2f25ae5b22.
It's confusing to have a boolean to alter the behavior of cli_push
and as the new feature isn't used yet I revert it.
We can readd a extra function later.
metze
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 794a006a68..a1cafb6837 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -2790,18 +2790,13 @@ struct async_req *cli_push_send(TALLOC_CTX *mem_ctx, struct event_context *ev, struct cli_state *cli, uint16_t fnum, uint16_t mode, off_t start_offset, size_t window_size, - bool caller_buffers, - size_t (*source)(uint8_t *inbuf, size_t n, - const uint8_t **outbuf, + size_t (*source)(uint8_t *buf, size_t n, void *priv), void *priv); NTSTATUS cli_push_recv(struct async_req *req); NTSTATUS cli_push(struct cli_state *cli, uint16_t fnum, uint16_t mode, off_t start_offset, size_t window_size, - bool caller_buffers, - size_t (*source)(uint8_t *inbuf, size_t n, - const uint8_t **outbuf, - void *priv), + size_t (*source)(uint8_t *buf, size_t n, void *priv), void *priv); /* The following definitions come from libsmb/clisecdesc.c */ |