9e6e2dfe83bb7cf62e73ada97880dc1df3ba1192
[kamenim/samba.git] / source4 / libcli / finddcs.h
1 /*
2    Unix SMB/CIFS implementation.
3
4    a composite API for finding a DC and its name
5
6    Copyright (C) Andrew Tridgell 2010
7
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.
12
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.
17
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/>.
20 */
21
22 #include "libcli/netlogon.h"
23
24 struct finddcs {
25         struct {
26                 const char *dns_domain_name;
27                 const char *site_name; /* optional */
28                 struct dom_sid *domain_sid; /* optional */
29                 uint32_t minimum_dc_flags; /* DS_SERVER_* */
30         } in;
31         struct {
32                 const char *address; /* IP address of server */
33                 struct netlogon_samlogon_response netlogon;
34         } out;
35 };
36
37 #include "finddcs_proto.h"