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
When we do Test3 to determine the client is behind a restricted or port restricted NAT, this line:
ret = stun_test(s, changedIP, port, source_ip, source_port, changePortRequest)
will request stun server sends a response from addr(changedIP:changedPort). As we have just send a request:
ret = stun_test(s, changedIP, changedPort, source_ip, source_port)
both RestricNAT and RestricPortNAT will receive the response. So we alway get typ = RestricNAT even if behind a port restricted NAT.
typ = RestricNAT
The text was updated successfully, but these errors were encountered:
fix jtriley#14: in test3, the client should send Request from the las…
d7e7c2f
…t used addr with changeport flag
@hmgle is right. @jtriley please fix this issue, please. Out team was misled by this result for several days.
Sorry, something went wrong.
7ca4fc2
Merge pull request #1 from konradkonrad/fix_test3
5d0922a
fix jtriley#14: in test3, the client should send Request from the last used …
69f0b3f
No branches or pull requests
When we do Test3 to determine the client is behind a restricted or port restricted NAT, this line:
will request stun server sends a response from addr(changedIP:changedPort). As we have just send a request:
both RestricNAT and RestricPortNAT will receive the response. So we alway get
typ = RestricNAT
even if behind a port restricted NAT.The text was updated successfully, but these errors were encountered: