summaryrefslogtreecommitdiffstats
path: root/source/lib/interface.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1997-10-15 09:16:30 +0000
committerAndrew Tridgell <tridge@samba.org>1997-10-15 09:16:30 +0000
commiteb76fea411c5c3aa96b7158d02b49ed42ec7ba70 (patch)
tree649f1bc4a30fa961d60d9561558163fbdd4327cb /source/lib/interface.c
parente1e86c1a160c8302004ea58e4f0f5874dd179dae (diff)
downloadsamba-eb76fea411c5c3aa96b7158d02b49ed42ec7ba70.tar.gz
samba-eb76fea411c5c3aa96b7158d02b49ed42ec7ba70.tar.xz
samba-eb76fea411c5c3aa96b7158d02b49ed42ec7ba70.zip
added loopback_ip. This is used to detect packets from ourselves
Diffstat (limited to 'source/lib/interface.c')
-rw-r--r--source/lib/interface.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/lib/interface.c b/source/lib/interface.c
index 147425d0fc1..1dc605ff2fd 100644
--- a/source/lib/interface.c
+++ b/source/lib/interface.c
@@ -25,6 +25,7 @@ extern int DEBUGLEVEL;
struct in_addr ipzero;
struct in_addr wins_ip;
+struct in_addr loopback_ip;
static struct in_addr default_ip;
static struct in_addr default_bcast;
static struct in_addr default_nmask;
@@ -262,6 +263,7 @@ static void interpret_interfaces(char *s, struct interface **interfaces,
ipzero = *interpret_addr2("0.0.0.0");
wins_ip = *interpret_addr2("255.255.255.255");
+ loopback_ip = *interpret_addr2("127.0.0.1");
while (next_token(&ptr,token,NULL)) {
/* parse it into an IP address/netmasklength pair */