go-sip-ua icon indicating copy to clipboard operation
go-sip-ua copied to clipboard

Add "rport" in via to support NAT.

Open finntenzor opened this issue 1 year ago • 0 comments

In current version of code, the "Via" in register request looks like: Via: SIP/2.0/UDP 192.168.1.100:50001;branch=z9hG4bK.iJM9FQ5m5ZRW0ZJZTAvNGlTyN9JPA6Nl In a common VoIP software, the "Via" in register request looks like: Via: SIP/2.0/UDP 192.168.1.100:50001;rport;branch=z9hG4bK.iJM9FQ5m5ZRW0ZJZTAvNGlTyN9JPA6Nl

The difference is that an extra "rport" is added. (See RFC3581)

This allows the client to be in the NAT without causing message loss. This version of code works fine on my FreeSwitch server.

However, the code does not carefully tune the writing style and configuration features, perhaps adding additional configurable items would be better.

finntenzor avatar Oct 14 '23 12:10 finntenzor