return state->status;
}
-NTSTATUS cli_smb2_rmdir(
- struct cli_state *cli,
- const char *dname,
- const struct smb2_create_blobs *in_cblobs)
-{
- TALLOC_CTX *frame = talloc_stackframe();
- struct tevent_context *ev;
- struct tevent_req *req;
- NTSTATUS status = NT_STATUS_NO_MEMORY;
- bool ok;
-
- if (smbXcli_conn_has_async_calls(cli->conn)) {
- /*
- * Can't use sync call while an async call is in flight
- */
- status = NT_STATUS_INVALID_PARAMETER;
- goto fail;
- }
- ev = samba_tevent_context_init(frame);
- if (ev == NULL) {
- goto fail;
- }
- req = cli_smb2_rmdir_send(frame, ev, cli, dname, in_cblobs);
- if (req == NULL) {
- goto fail;
- }
- ok = tevent_req_poll_ntstatus(req, ev, &status);
- if (!ok) {
- goto fail;
- }
- status = cli_smb2_rmdir_recv(req);
-fail:
- cli->raw_status = status;
- TALLOC_FREE(frame);
- return status;
-}
-
/***************************************************************
Small wrapper that allows SMB2 to unlink a pathname.
***************************************************************/
const char *dname,
const struct smb2_create_blobs *in_cblobs);
NTSTATUS cli_smb2_rmdir_recv(struct tevent_req *req);
-NTSTATUS cli_smb2_rmdir(
- struct cli_state *cli,
- const char *dname,
- const struct smb2_create_blobs *in_cblobs);
struct tevent_req *cli_smb2_unlink_send(
TALLOC_CTX *mem_ctx,
struct tevent_context *ev,