s4:role transfer - use always type "enum drepl_role_master" for role specifications
[Samba/gebeck_regimport.git] / source4 / libcli / finddc.h
blob86e2f2c231354abaea5ee12cf2882b0013124d0e
1 /*
2 Unix SMB/CIFS implementation.
4 a composite API for finding a DC and its name
6 Copyright (C) Andrew Tridgell 2010
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #include "libcli/netlogon.h"
24 struct finddcs {
25 struct {
26 const char *domain_name;
27 const char *site_name; /* optional */
28 struct dom_sid *domain_sid; /* optional */
29 uint32_t minimum_dc_flags; /* DS_SERVER_* */
30 const char *server_address; /* optional, bypass name
31 resolution */
32 } in;
33 struct {
34 const char *address; /* IP address of server */
35 struct netlogon_samlogon_response netlogon;
36 } out;
39 #include "finddcs_proto.h"