lib/upnp/Init: enable IPv6

This commit is contained in:
Max Kellermann
2018-01-31 18:15:46 +01:00
parent 3d5da1ac73
commit dead461542
2 changed files with 5 additions and 0 deletions

View File

@@ -34,7 +34,11 @@ static unsigned upnp_ref;
static void
DoInit()
{
#ifdef UPNP_ENABLE_IPV6
auto code = UpnpInit2(nullptr, 0);
#else
auto code = UpnpInit(nullptr, 0);
#endif
if (code != UPNP_E_SUCCESS)
throw FormatRuntimeError("UpnpInit() failed: %s",
UpnpGetErrorMessage(code));