diff options
Diffstat (limited to 'pfinet/main.c')
-rw-r--r-- | pfinet/main.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pfinet/main.c b/pfinet/main.c index 01dc24be..3e4db13e 100644 --- a/pfinet/main.c +++ b/pfinet/main.c @@ -206,6 +206,10 @@ main (int argc, After this, we can use `register_netdevice' for new interfaces. */ net_dev_init (); + /* ifconfig lo up 127.0.0.1 netmask 0xff000000 */ + configure_device (&loopback_dev, + htonl (INADDR_LOOPBACK), htonl (IN_CLASSA_NET)); + __mutex_unlock (&global_lock); /* Parse options. When successful, this configures the interfaces |