s3:smb2cli: replace smb2cli_base.c code with the more generic smbXcli_base.c code
[Samba/vl.git] / source3 / libsmb / smb2cli_base.h
blobefef350f5dd000981b2394c6211dfd84972889cf
1 /*
2 Unix SMB/CIFS implementation.
3 smb2 client routines
4 Copyright (C) Volker Lendecke 2011
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
20 #ifndef __SMB2CLI_BASE_H__
21 #define __SMB2CLI_BASE_H__
23 #include "../libcli/smb/smbXcli_base.h"
25 static inline struct tevent_req *cli_state_smb2cli_req_send(TALLOC_CTX *mem_ctx,
26 struct tevent_context *ev,
27 struct cli_state *cli,
28 uint16_t cmd,
29 uint32_t additional_flags,
30 uint32_t clear_flags,
31 uint32_t timeout_msec,
32 uint32_t pid,
33 uint32_t tid,
34 uint64_t uid,
35 const uint8_t *fixed,
36 uint16_t fixed_len,
37 const uint8_t *dyn,
38 uint32_t dyn_len)
40 if (cli->smb2.conn == NULL) {
41 cli->smb2.conn = smbXcli_conn_create(cli,
42 cli->conn.fd,
43 cli->conn.remote_name,
44 SMB_SIGNING_OFF,
45 0); /* smb1_capabilities */
46 if (cli->smb2.conn == NULL) {
47 return NULL;
51 return smb2cli_req_send(mem_ctx, ev,
52 cli->smb2.conn, cmd,
53 additional_flags, clear_flags,
54 timeout_msec,
55 pid, tid, uid,
56 fixed, fixed_len,
57 dyn, dyn_len);
60 #define smb2cli_req_send(mem_ctx, ev, cli, cmd, \
61 additional_flags, clear_flags, \
62 timeout_msec, \
63 pid, tid, uid, \
64 fixed, fixed_len, dyn, dyn_len) \
65 cli_state_smb2cli_req_send(mem_ctx, ev, cli, cmd, \
66 additional_flags, clear_flags, \
67 timeout_msec, \
68 pid, tid, uid, \
69 fixed, fixed_len, dyn, dyn_len)
71 #endif