You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When starting the linux server compiled from the latest GitHub sources, and started with JammerNetzServer -k JammerNetzSecret_202105140952.bin --port 22125 the output shows Server listening on port 0
Tried different port numbers, also didn't work.
I can't connect to the server, so using the --port switch may be breaking the server altogether?
Using Ubuntu 20.04 and the compilation instructions in the Github readme.
The text was updated successfully, but these errors were encountered:
Ah: found the issue here. The command line should read --port=22125. When the = is committed, no error is thrown and the server binds to port 0, which will never work.
@reneknuvers Thanks! Yes, this is based on the weird JUCE command line parsing, which is not really gnu compatible. But it should abort with an error as Port 0 is not a valid number, I'll add some error checking!
christofmuc
changed the title
SERVER: Port number not correctly displayed
SERVER: Port 0 is accepted when no "=" sign is used in specifying command line param
May 16, 2021
When starting the linux server compiled from the latest GitHub sources, and started with
JammerNetzServer -k JammerNetzSecret_202105140952.bin --port 22125
the output showsServer listening on port 0
Tried different port numbers, also didn't work.
I can't connect to the server, so using the --port switch may be breaking the server altogether?
Using Ubuntu 20.04 and the compilation instructions in the Github readme.
The text was updated successfully, but these errors were encountered: