You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How should the server correctly be closed after an IP address was bound?
I actually added it to the on bound but not sure if this is the correct place, because the following error appears "Error: Not running." Without the server.close() in the on bound no error appears but I am also not able to close the server :D
Example code:
server.on('bound', function(state) {
console.log("bound ip address.");
server.close();
});
Why would you close the server after the IP was bound? DHCP is based on UDP, which is stateless, there is no open connection. Closing the server means no incoming connections are handled anymore. Or is this your desired behavior, that you handle only one single client and as soon as the user got an IP, you terminate the server? Then closing the server on bound should be ok.
Yeah exactly. I created a test, where I assign a single ip address via dhcp and afterwards the server can be stopped. --> If the DHCP server is closed like described above I will get a "Error: not running". Can this behaviour be fixed?
Hello all!
How should the server correctly be closed after an IP address was bound?
I actually added it to the
on bound
but not sure if this is the correct place, because the following error appears "Error: Not running." Without theserver.close()
in theon bound
no error appears but I am also not able to close the server :DExample code:
This shows the "Error: Not running".
The text was updated successfully, but these errors were encountered: