diff options
author | Ivo De Decker <ivo.dedecker@ugent.be> | 2013-05-10 13:33:02 +0200 |
---|---|---|
committer | Ivo De Decker <ivo.dedecker@ugent.be> | 2013-05-10 13:33:02 +0200 |
commit | 31202ad025bcdeb2585d18dc3f4641b5cf9c0ec4 (patch) | |
tree | 32c20d66684ac97b86e55495146e9a676bfae85a /source3/include/async_smb.h | |
parent | 2865eba17fddda6c49f1209ca92d539111e7ff93 (diff) | |
download | samba-31202ad025bcdeb2585d18dc3f4641b5cf9c0ec4.tar.gz |
Imported Upstream version 4.0.0+dfsg1upstream/4.0.0+dfsg1
Diffstat (limited to 'source3/include/async_smb.h')
-rw-r--r-- | source3/include/async_smb.h | 41 |
1 files changed, 2 insertions, 39 deletions
diff --git a/source3/include/async_smb.h b/source3/include/async_smb.h index 1685d4985d..00c2313b69 100644 --- a/source3/include/async_smb.h +++ b/source3/include/async_smb.h @@ -22,38 +22,15 @@ struct cli_state; -/* - * Fetch an error out of a NBT packet - */ - -NTSTATUS cli_pull_error(char *buf); - -/* - * Compatibility helper for the sync APIs: Fake NTSTATUS in cli->inbuf - */ - -void cli_set_error(struct cli_state *cli, NTSTATUS status); - struct tevent_req *cli_smb_req_create(TALLOC_CTX *mem_ctx, - struct event_context *ev, + struct tevent_context *ev, 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); -NTSTATUS cli_smb_req_send(struct tevent_req *req); -size_t cli_smb_wct_ofs(struct tevent_req **reqs, int num_reqs); -NTSTATUS cli_smb_chain_send(struct tevent_req **reqs, int num_reqs); -uint8_t *cli_smb_inbuf(struct tevent_req *req); -bool cli_has_async_calls(struct cli_state *cli); -void cli_smb_req_unset_pending(struct tevent_req *req); -bool cli_smb_req_set_pending(struct tevent_req *req); -uint16_t cli_smb_req_mid(struct tevent_req *req); -void cli_smb_req_set_mid(struct tevent_req *req, uint16_t mid); -uint32_t cli_smb_req_seqnum(struct tevent_req *req); -void cli_smb_req_set_seqnum(struct tevent_req *req, uint32_t seqnum); -struct tevent_req *cli_smb_send(TALLOC_CTX *mem_ctx, struct event_context *ev, +struct tevent_req *cli_smb_send(TALLOC_CTX *mem_ctx, struct tevent_context *ev, struct cli_state *cli, uint8_t smb_command, uint8_t additional_flags, uint8_t wct, uint16_t *vwv, @@ -64,18 +41,4 @@ NTSTATUS cli_smb_recv(struct tevent_req *req, uint8_t min_wct, uint8_t *pwct, uint16_t **pvwv, uint32_t *pnum_bytes, uint8_t **pbytes); -struct tevent_req *cli_smb_oplock_break_waiter_send(TALLOC_CTX *mem_ctx, - struct event_context *ev, - struct cli_state *cli); -NTSTATUS cli_smb_oplock_break_waiter_recv(struct tevent_req *req, - uint16_t *pfnum, - uint8_t *plevel); - -struct tevent_req *cli_session_request_send(TALLOC_CTX *mem_ctx, - struct tevent_context *ev, - int sock, - const struct nmb_name *called, - const struct nmb_name *calling); -bool cli_session_request_recv(struct tevent_req *req, int *err, uint8_t *resp); - #endif |