Hi there,
I try to start a Gimx server on Windows to listen on an arbitrary port (none works) but all it keeps saying is:
socket: No error
option -s with value `127.0.0.1:51914'
Can't listen on port: 51914.
connector_init failed
Does anybody have an idea, what's wrong?
Problem starting Gimx Server on Windows
Re: Problem starting Gimx Server on Windows
GIMX creator
Re: Problem starting Gimx Server on Windows
Hi Matlo,
thanks for pointing this out. I already read this commit and wondered why it is still not working.
My installation was just too old >.<
Cheers
thanks for pointing this out. I already read this commit and wondered why it is still not working.
My installation was just too old >.<
Cheers
Re: Problem starting Gimx Server on Windows
Even after compiling the code with your changes (the binaries are outdated) the error is still there.
(And perror() doesn't give winsock errors, use WSAGetLastError() instead).
You are obviously missing the WSAStartup call for udp_listen() in udp_con.c.
Calling WSAStartup makes it work.
(And perror() doesn't give winsock errors, use WSAGetLastError() instead).
You are obviously missing the WSAStartup call for udp_listen() in udp_con.c.
Calling WSAStartup makes it work.
Re: Problem starting Gimx Server on Windows
This is already fixed in the develop branch:
https://github.com/matlo/GIMX/blob/deve ... /udp_con.c
The master branch contains the code of the latest release which is v3.5.
https://github.com/matlo/GIMX/blob/deve ... /udp_con.c
The master branch contains the code of the latest release which is v3.5.
GIMX creator
Re: Problem starting Gimx Server on Windows
Didn't realize I'm on the master branch. Too late at night, sorry.
Thanks, Matlo. Keep up the good work.
Thanks, Matlo. Keep up the good work.