mirror of
https://github.com/status-im/miniupnp.git
synced 2025-01-22 12:18:59 +00:00
Fix error code for 708
According to the specification http://upnp.org/specs/gw/UPnP-gw-WANIPConnection-v2-Service.pdf, the 708 error code corresponds to InvalidLayer2Address. Also WildcardNotPermittedInSrcIP is for 715 which is already properly mapped.
This commit is contained in:
parent
343bb320b8
commit
ea69474873
@ -71,7 +71,7 @@ const char * strupnperror(int err)
|
||||
s = "ProtocolWildcardingNotAllowed";
|
||||
break;
|
||||
case 708:
|
||||
s = "WildcardNotPermittedInSrcIP";
|
||||
s = "InvalidLayer2Address";
|
||||
break;
|
||||
case 709:
|
||||
s = "NoPacketSent";
|
||||
|
Loading…
x
Reference in New Issue
Block a user