You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The upnpDiscover method signature of the miniupnpc package has changed from upnpDiscover(int delay, const char * multicastif, const char * minissdpdsock, int localport, int ipv6, int * error);
to upnpDiscover(int delay, const char * multicastif, const char * minissdpdsock, int localport, int ipv6, unsigned char ttl, int * error);
causing the build to crash with MINIUPNPC_VERSION = 2.1. (E.g On Ubuntu 18.10)
I added an unsigned char ttl to the function call to fix it on my machine, but it looks like there may be three method signatures to track now rather than two.
The text was updated successfully, but these errors were encountered:
The upnpDiscover method signature of the miniupnpc package has changed from
upnpDiscover(int delay, const char * multicastif, const char * minissdpdsock, int localport, int ipv6, int * error);
to
upnpDiscover(int delay, const char * multicastif, const char * minissdpdsock, int localport, int ipv6, unsigned char ttl, int * error);
causing the build to crash with MINIUPNPC_VERSION = 2.1. (E.g On Ubuntu 18.10)
I added an unsigned char ttl to the function call to fix it on my machine, but it looks like there may be three method signatures to track now rather than two.
The text was updated successfully, but these errors were encountered: