2 Samba Unix/Linux SMB client library
3 Distributed SMB/CIFS Server Management Utility
4 Copyright (C) 2001 Andrew Bartlett (abartlet@samba.org)
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 * A function of this type is passed to the '
21 * run_rpc_command' wrapper. Must go before the net_proto.h
25 #include "lib/netapi/netapi.h"
26 #include "libnet/libnet.h"
29 const char *opt_requester_name
;
31 const char *opt_password
;
32 const char *opt_user_name
;
33 bool opt_user_specified
;
34 const char *opt_workgroup
;
35 int opt_long_list_entries
;
42 const char *opt_comment
;
43 const char *opt_container
;
46 const char *opt_target_workgroup
;
51 const char *opt_newntname
;
56 const char *opt_exclude
;
57 const char *opt_destination
;
61 struct sockaddr_storage opt_dest_ip
;
63 struct libnetapi_ctx
*netapi_ctx
;
67 const char *share_type
[];
70 #define NET_TRANSPORT_LOCAL 0x01
71 #define NET_TRANSPORT_RAP 0x02
72 #define NET_TRANSPORT_RPC 0x04
73 #define NET_TRANSPORT_ADS 0x08
77 int (*fn
)(struct net_context
*c
, int argc
, const char **argv
);
79 const char *description
;
83 typedef NTSTATUS (*rpc_command_fn
)(struct net_context
*c
,
86 struct cli_state
*cli
,
87 struct rpc_pipe_client
*,
92 typedef struct copy_clistate
{
94 struct cli_state
*cli_share_src
;
95 struct cli_state
*cli_share_dst
;
98 struct net_context
*c
;
102 struct cli_state
*cli
;
105 const char *domain_name
;
109 struct rpc_sh_cmd
*cmds
;
110 struct rpc_sh_ctx
*parent
;
115 struct rpc_sh_cmd
*(*sub
)(struct net_context
*c
,
117 struct rpc_sh_ctx
*ctx
);
118 const struct ndr_syntax_id
*interface
;
119 NTSTATUS (*fn
)(struct net_context
*c
, TALLOC_CTX
*mem_ctx
,
120 struct rpc_sh_ctx
*ctx
,
121 struct rpc_pipe_client
*pipe_hnd
,
122 int argc
, const char **argv
);
126 enum netdom_domain_t
{ ND_TYPE_NT4
, ND_TYPE_AD
};
130 #include "utils/net_proto.h"
131 #include "utils/net_help_common.h"
133 /* MACROS & DEFINES */
135 #define NET_FLAGS_MASTER 0x00000001
136 #define NET_FLAGS_DMB 0x00000002
137 #define NET_FLAGS_LOCALHOST_DEFAULT_INSANE 0x00000004 /* Would it be insane to set 'localhost'
138 as the default remote host for this
139 operation? For example, localhost
140 is insane for a 'join' operation. */
141 #define NET_FLAGS_PDC 0x00000008 /* PDC only */
142 #define NET_FLAGS_ANONYMOUS 0x00000010 /* use an anonymous connection */
143 #define NET_FLAGS_NO_PIPE 0x00000020 /* don't open an RPC pipe */
144 #define NET_FLAGS_SIGN 0x00000040 /* sign RPC connection */
145 #define NET_FLAGS_SEAL 0x00000080 /* seal RPC connection */
147 /* net share operation modes */
148 #define NET_MODE_SHARE_MIGRATE 1