Add NATSymmetricUDPFirewall to punchable NATs (#5931)

NATSymmetricUDPFirewall actually is not NAT at all, but means the machine has a global IP address and an UDP firewall in front (RFC calls it Symmetric UDP Firewall). This is punchable fine, both theoretically and also practically in testing.
This commit is contained in:
Oliver Freyermuth 2019-08-06 13:26:02 +02:00 committed by Audrius Butkevicius
parent d43b0a4395
commit edf2399ce6
1 changed files with 1 additions and 1 deletions

View File

@ -304,7 +304,7 @@ func (s *Service) String() string {
}
func (s *Service) isCurrentNATTypePunchable() bool {
return s.natType == NATNone || s.natType == NATPortRestricted || s.natType == NATRestricted || s.natType == NATFull
return s.natType == NATNone || s.natType == NATPortRestricted || s.natType == NATRestricted || s.natType == NATFull || s.natType == NATSymmetricUDPFirewall
}
func areDifferent(first, second *Host) bool {