suziwon
04-24-2003, 02:00 PM
There is a bug in the MySEQ 1.8a server that makes it impossible to select a port other than 5555 for the server to run on.
The line in main(...):
if (argc == 2 ) {
port = atoi(argv[2]);
...
should read more like
if ( argc > 1 ) {
port = atoi(argv[1]);
....
only editor I have right now is notepad so no line numbers or a diff. :(
Suziwon
The line in main(...):
if (argc == 2 ) {
port = atoi(argv[2]);
...
should read more like
if ( argc > 1 ) {
port = atoi(argv[1]);
....
only editor I have right now is notepad so no line numbers or a diff. :(
Suziwon