summaryrefslogtreecommitdiff
path: root/source4/libnet/libnet_become_dc.h
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2006-12-02 12:46:13 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:28:46 -0500
commit1e02e77fe1c6540e75d98a0a089c1faffa77a31f (patch)
tree75b18c27b1e29e08e52ecb646db39b1ec26ac4ef /source4/libnet/libnet_become_dc.h
parent989b47d1f125eff1f41a223fd152814bb308d547 (diff)
downloadsamba-1e02e77fe1c6540e75d98a0a089c1faffa77a31f.tar.gz
samba-1e02e77fe1c6540e75d98a0a089c1faffa77a31f.tar.bz2
samba-1e02e77fe1c6540e75d98a0a089c1faffa77a31f.zip
r20008: add stubs for a libnet_BecomeDC() call
metze (This used to be commit 103ac9a96bb43f512915196eb8869f9633410618)
Diffstat (limited to 'source4/libnet/libnet_become_dc.h')
-rw-r--r--source4/libnet/libnet_become_dc.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/source4/libnet/libnet_become_dc.h b/source4/libnet/libnet_become_dc.h
new file mode 100644
index 0000000000..6cda4d89b3
--- /dev/null
+++ b/source4/libnet/libnet_become_dc.h
@@ -0,0 +1,29 @@
+/*
+ Unix SMB/CIFS implementation.
+
+ Copyright (C) Stefan Metzmacher 2006
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+*/
+
+struct libnet_BecomeDC {
+ struct {
+ const char *dest_address;
+ } in;
+
+ struct {
+ const char *error_string;
+ } out;
+};