s3:lib: Move internal lp_posix_pathnames() call out of utility function synthetic_smb...
[amitay/samba.git] / source3 / include / async_smb.h
index 1685d4985d44f119a98dc7c8883b73d4b06d68ae..00c2313b697506e963dc7e9bf03ddef52bc60e9a 100644 (file)
 
 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