diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2006-03-07 11:07:23 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:52:24 -0500 |
commit | 4ac2be99588b48b0652a524bf12fb1aa9c3f5fbb (patch) | |
tree | 1d810fa37a23a91d9405b686bd8b86befe2b1f9a /source4/lib/netif | |
parent | 45c92c9cf08210e1d5792e2d8db93912727c3dba (diff) | |
download | samba-4ac2be99588b48b0652a524bf12fb1aa9c3f5fbb.tar.gz samba-4ac2be99588b48b0652a524bf12fb1aa9c3f5fbb.tar.bz2 samba-4ac2be99588b48b0652a524bf12fb1aa9c3f5fbb.zip |
r13924: Split more prototypes out of include/proto.h + initial work on header
file dependencies
(This used to be commit 122835876748a3eaf5e8d31ad1abddab9acb8781)
Diffstat (limited to 'source4/lib/netif')
-rw-r--r-- | source4/lib/netif/interface.c | 50 | ||||
-rw-r--r-- | source4/lib/netif/netif.c | 1 | ||||
-rw-r--r-- | source4/lib/netif/netif.h | 1 |
3 files changed, 27 insertions, 25 deletions
diff --git a/source4/lib/netif/interface.c b/source4/lib/netif/interface.c index 8d738f6c41..019b05cfbb 100644 --- a/source4/lib/netif/interface.c +++ b/source4/lib/netif/interface.c @@ -25,7 +25,7 @@ #include "lib/netif/netif.h" #include "dlinklist.h" -/* used for network interfaces */ +/** used for network interfaces */ struct interface { struct interface *next, *prev; struct ipv4_addr ip; @@ -105,7 +105,7 @@ static void add_interface(struct in_addr ip, struct in_addr nmask) -/**************************************************************************** +/** interpret a single element from a interfaces= config line This handles the following different forms: @@ -115,7 +115,7 @@ This handles the following different forms: 3) IP/masklen 4) ip/mask 5) bcast/mask -****************************************************************************/ +**/ static void interpret_interface(const char *token, struct iface_struct *probed_ifaces, int total_probed) @@ -184,9 +184,9 @@ static void interpret_interface(const char *token, } -/**************************************************************************** +/** load the list of network interfaces -****************************************************************************/ +**/ static void load_interfaces(void) { const char **ptr; @@ -230,19 +230,19 @@ static void load_interfaces(void) } -/* +/** unload the interfaces list, so it can be reloaded when needed */ -_PUBLIC_ void unload_interfaces(void) +void unload_interfaces(void) { talloc_free(local_interfaces); local_interfaces = NULL; } -/**************************************************************************** +/** how many interfaces do we have - **************************************************************************/ -_PUBLIC_ int iface_count(void) + **/ +int iface_count(void) { int ret = 0; struct interface *i; @@ -254,10 +254,10 @@ _PUBLIC_ int iface_count(void) return ret; } -/**************************************************************************** +/** return IP of the Nth interface - **************************************************************************/ -_PUBLIC_ const char *iface_n_ip(int n) + **/ +const char *iface_n_ip(int n) { struct interface *i; @@ -272,10 +272,10 @@ _PUBLIC_ const char *iface_n_ip(int n) return NULL; } -/**************************************************************************** +/** return bcast of the Nth interface - **************************************************************************/ -_PUBLIC_ const char *iface_n_bcast(int n) + **/ +const char *iface_n_bcast(int n) { struct interface *i; @@ -290,10 +290,10 @@ _PUBLIC_ const char *iface_n_bcast(int n) return NULL; } -/**************************************************************************** +/** return netmask of the Nth interface - **************************************************************************/ -_PUBLIC_ const char *iface_n_netmask(int n) + **/ +const char *iface_n_netmask(int n) { struct interface *i; @@ -308,11 +308,11 @@ _PUBLIC_ const char *iface_n_netmask(int n) return NULL; } -/* +/** return the local IP address that best matches a destination IP, or our first interface if none match */ -_PUBLIC_ const char *iface_best_ip(const char *dest) +const char *iface_best_ip(const char *dest) { struct interface *iface; struct in_addr ip; @@ -327,10 +327,10 @@ _PUBLIC_ const char *iface_best_ip(const char *dest) return iface_n_ip(0); } -/* +/** return True if an IP is one one of our local networks */ -_PUBLIC_ BOOL iface_is_local(const char *dest) +BOOL iface_is_local(const char *dest) { struct in_addr ip; @@ -343,10 +343,10 @@ _PUBLIC_ BOOL iface_is_local(const char *dest) return False; } -/* +/** return True if a IP matches a IP/netmask pair */ -_PUBLIC_ BOOL iface_same_net(const char *ip1, const char *ip2, const char *netmask) +BOOL iface_same_net(const char *ip1, const char *ip2, const char *netmask) { return same_net(interpret_addr2(ip1), interpret_addr2(ip2), diff --git a/source4/lib/netif/netif.c b/source4/lib/netif/netif.c index 8256615ef2..0344febf38 100644 --- a/source4/lib/netif/netif.c +++ b/source4/lib/netif/netif.c @@ -77,6 +77,7 @@ #endif #include <net/if.h> +#define BOOL int #include "netif.h" #if HAVE_IFACE_IFCONF diff --git a/source4/lib/netif/netif.h b/source4/lib/netif/netif.h index 7efe5a9b19..77b7809685 100644 --- a/source4/lib/netif/netif.h +++ b/source4/lib/netif/netif.h @@ -28,3 +28,4 @@ struct iface_struct { #define MAX_INTERFACES 128 +#include "netif/proto.h" |