"<DeXteR>" <[EMAIL PROTECTED]> writes:

> +   // The following is a FILTHY hack around the fact that we are not allowed to
> +   // open a port below 1024. We get a segfault if we try so...
> +   
> +   if (_nPort <= 1024) 

Strictly speaking it should be 

     if (_nPort < 1024) 
or
     if (_nPort <= 1023)

shouldn't it?

Port 1024 is not a privileged port as far as I know.

-- 
Jacob - www.bunk.cc
You're not an alcoholic unless you go to the meetings.


_______________________________________________
Licq-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/licq-devel

Reply via email to