From 6ab3f8cedbd79776169b1f84d8775b9887d9c82d Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Wed, 7 Sep 2011 18:44:21 +0200 Subject: s3:smb2cli: pass struct smbXcli_conn directly to smb2cli_req_create/_send() metze --- source3/libsmb/smb2cli_base.h | 60 ------------------------------------------- 1 file changed, 60 deletions(-) delete mode 100644 source3/libsmb/smb2cli_base.h (limited to 'source3/libsmb/smb2cli_base.h') diff --git a/source3/libsmb/smb2cli_base.h b/source3/libsmb/smb2cli_base.h deleted file mode 100644 index d68d65a304..0000000000 --- a/source3/libsmb/smb2cli_base.h +++ /dev/null @@ -1,60 +0,0 @@ -/* - Unix SMB/CIFS implementation. - smb2 client routines - Copyright (C) Volker Lendecke 2011 - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . -*/ - -#ifndef __SMB2CLI_BASE_H__ -#define __SMB2CLI_BASE_H__ - -#include "../libcli/smb/smbXcli_base.h" - -static inline struct tevent_req *cli_state_smb2cli_req_send(TALLOC_CTX *mem_ctx, - struct tevent_context *ev, - struct cli_state *cli, - uint16_t cmd, - uint32_t additional_flags, - uint32_t clear_flags, - uint32_t timeout_msec, - uint32_t pid, - uint32_t tid, - struct smbXcli_session *session, - const uint8_t *fixed, - uint16_t fixed_len, - const uint8_t *dyn, - uint32_t dyn_len) -{ - return smb2cli_req_send(mem_ctx, ev, - cli->conn, cmd, - additional_flags, clear_flags, - timeout_msec, - pid, tid, session, - fixed, fixed_len, - dyn, dyn_len); -} - -#define smb2cli_req_send(mem_ctx, ev, cli, cmd, \ - additional_flags, clear_flags, \ - timeout_msec, \ - pid, tid, session, \ - fixed, fixed_len, dyn, dyn_len) \ - cli_state_smb2cli_req_send(mem_ctx, ev, cli, cmd, \ - additional_flags, clear_flags, \ - timeout_msec, \ - pid, tid, session, \ - fixed, fixed_len, dyn, dyn_len) - -#endif -- cgit