2 Unix SMB/CIFS implementation.
3 mdssvc client functions
5 Copyright (C) Ralph Boehme 2019
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #ifndef _MDSCLI_PRIVATE_H_
22 #define _MDSCLI_PRIVATE_H_
30 uint64_t async_pending
;
32 struct dcerpc_binding_handle
*bh
;
33 struct policy_handle ph
;
35 struct mdsctx_id ctx_id
;
36 size_t max_fragment_size
;
38 /* Known fields used across multiple commands */
42 /* cmd specific or unknown fields */
44 char share_path
[1025];
45 size_t share_path_len
;
62 size_t path_scope_len
;
65 struct mdscli_search_ctx
{
66 struct mdscli_ctx
*mdscli_ctx
;
67 struct mdsctx_id ctx_id
;
74 #endif /* _MDSCLI_PRIVATE_H_ */