Re: [Mono-dev] HttpListener

2015-04-26 Thread Miguel de Icaza
Hello Greg, Is that in HttpListener, or somewhere else? Miguel On Fri, Apr 24, 2015 at 12:41 PM, Greg Young gregoryyou...@gmail.com wrote: Here is some of the code in question: IPAddress addr; if (host == *) addr = IPAddress.Any; else if (IPAddress.TryParse(host, out addr) == false){

Re: [Mono-dev] HttpListener

2015-04-26 Thread Greg Young
This is the code handling the prefixes its here https://github.com/mono/mono/blob/master/mcs/class/System/System.Net/EndPointManager.cs#L43 There is quite a bit of odd code around this in general. I understand much of it is trying to reach compliance with MS but ... On Sun, Apr 26, 2015 at 4:40