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:
Sibi Prabakaran 2019-07-29 22:49:07 +05:30
parent 343bb320b8
commit ea69474873
No known key found for this signature in database
GPG Key ID: D19E3E0EBB557613
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ const char * strupnperror(int err)
s = "ProtocolWildcardingNotAllowed"; s = "ProtocolWildcardingNotAllowed";
break; break;
case 708: case 708:
s = "WildcardNotPermittedInSrcIP"; s = "InvalidLayer2Address";
break; break;
case 709: case 709:
s = "NoPacketSent"; s = "NoPacketSent";