r10486: This is a merge of Brad Henry's 'net join' rework, to better perform
[kai/samba.git] / source4 / libnet / libnet_rpc.h
1 /* 
2    Unix SMB/CIFS implementation.
3    
4    Copyright (C) Stefan Metzmacher      2004
5    
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 2 of the License, or
9    (at your option) any later version.
10    
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.
15    
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20
21
22 /*
23  * struct definition for connecting to a dcerpc inferface
24  */
25
26 enum libnet_RpcConnect_level {
27         LIBNET_RPC_CONNECT_SERVER,      /* connect to a standalone rpc server */
28         LIBNET_RPC_CONNECT_PDC,          /* connect to a domain pdc */
29         LIBNET_RPC_CONNECT_BINDING      /* specified binding string */
30 };
31
32 struct libnet_RpcConnect {
33         enum libnet_RpcConnect_level level;
34
35         struct {
36                 const char *domain_name;
37                 const char *binding;
38                 const char *dcerpc_iface_name;
39                 const char *dcerpc_iface_uuid;
40                 uint32_t dcerpc_iface_version;
41         } in;
42         struct {
43                 struct dcerpc_pipe *dcerpc_pipe;
44                 const char *error_string;
45         } out;
46 };