summaryrefslogtreecommitdiff
path: root/source4/lib/socket/netif.h
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2006-08-17 13:37:04 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:15:39 -0500
commita2eca9174c7803732658a1e6f7e8ed873c4fb6fd (patch)
tree237a5c57dd5b5b311ddc9830f48a7f9fa8401b38 /source4/lib/socket/netif.h
parent04b2dfd9350a218f61a2d83576ca9454e8cfed2b (diff)
downloadsamba-a2eca9174c7803732658a1e6f7e8ed873c4fb6fd.tar.gz
samba-a2eca9174c7803732658a1e6f7e8ed873c4fb6fd.tar.bz2
samba-a2eca9174c7803732658a1e6f7e8ed873c4fb6fd.zip
r17586: merge lib/netif into lib/socket and use -lnsl -lsocket on the
configure check for the interfaces. should fix the build on some old sun boxes metze (This used to be commit f20e251bfd9f1eb7ce5c00739631b1625a2aa467)
Diffstat (limited to 'source4/lib/socket/netif.h')
-rw-r--r--source4/lib/socket/netif.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/source4/lib/socket/netif.h b/source4/lib/socket/netif.h
new file mode 100644
index 0000000000..ad7c31eb9e
--- /dev/null
+++ b/source4/lib/socket/netif.h
@@ -0,0 +1,33 @@
+/*
+ Unix SMB/CIFS implementation.
+
+ structures for lib/netif/
+
+ Copyright (C) Andrew Tridgell 2004
+
+ 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 iface_struct {
+ char name[16];
+ struct in_addr ip;
+ struct in_addr netmask;
+};
+
+#define MAX_INTERFACES 128
+
+#ifndef AUTOCONF_TEST
+#include "lib/socket/netif_proto.h"
+#endif