Development: Why must the port be greater than 1024? In the file uiterminal.cpp in the function
bool MUITermPriv::com_open(char * arg)
there is a line that prevents you from trying to connect to a port smaller than 1024. Why?
""""""""""
if (nPort<1024)
nPort = 6346;
""""""""""
There are some servents running on ports smaller
than 1024.
Why not remove it? |