We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Users want to verify they port forwarded correctly by using port checkers. Add a view to the launcher for users to test a port is open.
After implementation, verify by using some port checkers like:
For port checkers to work, use your public IP: https://ipv4.icanhazip.com/
Following code should show Open status in port checkers for port 11000 UDP.
Open
11000
using UdpClient client = new(new IPEndPoint(IPAddress.Any, 11000)); Console.WriteLine("Ready to receive stuff!"); while (true) { var result = await client.ReceiveAsync(); Console.WriteLine($"{result.RemoteEndPoint} - {result.Buffer.Length} bytes: {BitConverter.ToString(result.Buffer).Replace('-', '\0')}"); await client.SendAsync(result.Buffer, result.Buffer.Length, result.RemoteEndPoint); }
The text was updated successfully, but these errors were encountered:
Currently taking on this issue, but I haven't made a PR yet. Have created a branch in my fork of the nitrox repo
Sorry, something went wrong.
No branches or pull requests
Describe the issue
Users want to verify they port forwarded correctly by using port checkers. Add a view to the launcher for users to test a port is open.
After implementation, verify by using some port checkers like:
For port checkers to work, use your public IP: https://ipv4.icanhazip.com/
Proof of concept
Following code should show
Open
status in port checkers for port11000
UDP.The text was updated successfully, but these errors were encountered: