r12926: Syncronsise GUIDs on users and domains from the server. These also
[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 (resolves domain
29                                             name to a pdc address before connecting) */
30         LIBNET_RPC_CONNECT_DC,           /* connect to any DC (resolves domain
31                                             name to a DC address before connecting) */
32         LIBNET_RPC_CONNECT_BINDING       /* specified binding string */
33 };
34
35 struct libnet_RpcConnect {
36         enum libnet_RpcConnect_level level;
37
38         struct {
39                 const char *name;
40                 const char *binding;
41                 const struct dcerpc_interface_table *dcerpc_iface;
42         } in;
43         struct {
44                 struct dcerpc_pipe *dcerpc_pipe;
45                 const char *error_string;
46         } out;
47 };
48
49 struct libnet_RpcConnectDCInfo {
50         enum libnet_RpcConnect_level level;
51
52         struct {
53                 const char *name;
54                 const char *binding;
55                 const struct dcerpc_interface_table *dcerpc_iface;
56         } in;
57         struct {
58                 struct dcerpc_pipe *dcerpc_pipe;
59                 struct dom_sid *domain_sid;
60                 const char *domain_name;
61
62                 /* These parameters only present if the remote server is known to be AD */
63                 const char *realm;
64                 struct GUID *guid;
65
66                 const char *error_string;
67         } out;
68 };