Commit 400dc572 authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Move sending of requests into network_up.

parent b2a6ba84
...@@ -234,6 +234,7 @@ network_up(struct network *net, int up) ...@@ -234,6 +234,7 @@ network_up(struct network *net, int up)
/* But don't bail out for now. */ /* But don't bail out for now. */
} }
send_hello(net); send_hello(net);
send_request(net, NULL, 0, 0, 0, 0);
} else { } else {
net->buffered = 0; net->buffered = 0;
net->bufsize = 0; net->bufsize = 0;
...@@ -280,8 +281,6 @@ check_networks(void) ...@@ -280,8 +281,6 @@ check_networks(void)
if((rc > 0) != nets[i].up) { if((rc > 0) != nets[i].up) {
debugf("Noticed status change for %s.\n", nets[i].ifname); debugf("Noticed status change for %s.\n", nets[i].ifname);
network_up(&nets[i], rc > 0); network_up(&nets[i], rc > 0);
if(rc > 0)
send_request(&nets[i], NULL, 0, 0, 0, 0);
} }
check_network_ipv4(&nets[i]); check_network_ipv4(&nets[i]);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment