To support binding the listener to "any" IP address, added special cases for 0.0.0.0, ::, and *.
Changing the ServerAddress option from a string to an IPAddress, as originally proposed, would have broken existing functionality, and allowing either/or would have been messy.
To support binding the listener to "any" IP address, added special cases for
0.0.0.0
,::
, and*
.Changing the ServerAddress option from a string to an IPAddress, as originally proposed, would have broken existing functionality, and allowing either/or would have been messy.
Fixes #43.