Set the "stable" vendor string in VERSION.
[ira/wip.git] / source3 / lib / netapi / examples / getdc / getdc.c
1 /*
2  *  Unix SMB/CIFS implementation.
3  *  GetDCName query
4  *  Copyright (C) Guenther Deschner 2007
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 3 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, see <http://www.gnu.org/licenses/>.
18  */
19
20 #include <sys/types.h>
21 #include <inttypes.h>
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <string.h>
25
26 #include <netapi.h>
27
28 int main(int argc, char **argv)
29 {
30         NET_API_STATUS status;
31         struct libnetapi_ctx *ctx = NULL;
32         uint8_t *buffer;
33
34         if (argc < 3) {
35                 printf("usage: getdc <hostname> <domain>\n");
36                 return -1;
37         }
38
39         status = libnetapi_init(&ctx);
40         if (status != 0) {
41                 return status;
42         }
43
44         libnetapi_set_username(ctx, "");
45         libnetapi_set_password(ctx, "");
46
47         status = NetGetDCName(argv[1], argv[2], &buffer);
48         if (status != 0) {
49                 printf("GetDcName failed with: %s\n", libnetapi_errstr(ctx, status));
50         } else {
51                 printf("%s\n", (char *)buffer);
52         }
53
54         libnetapi_free(ctx);
55
56         return status;
57 }