diff options
| author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2017-07-17 17:02:57 -0700 |
|---|---|---|
| committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2017-07-17 17:02:57 -0700 |
| commit | 77ce2384578d96780737e6bfa2265ee94946eae6 (patch) | |
| tree | feff045064c1bdf0e0e511d8071218a13e70f2fb /ext | |
| parent | 1685659e37f568c727580634e412674cc266ff31 (diff) | |
| parent | 0f03d4ef51909953f393d683bb2a26096acdd917 (diff) | |
| download | infinitytier-77ce2384578d96780737e6bfa2265ee94946eae6.tar.gz infinitytier-77ce2384578d96780737e6bfa2265ee94946eae6.zip | |
Merge branch 'dev' of http://10.6.6.2/zerotier/ZeroTierOne into dev
Diffstat (limited to 'ext')
| -rw-r--r-- | ext/miniupnpc/minisoap.c | 6 | ||||
| -rw-r--r-- | ext/miniupnpc/miniwget.c | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/ext/miniupnpc/minisoap.c b/ext/miniupnpc/minisoap.c index 7aa0213e..01102a01 100644 --- a/ext/miniupnpc/minisoap.c +++ b/ext/miniupnpc/minisoap.c @@ -26,6 +26,12 @@ #define UPNP_VERSION_STRING "UPnP/1.1" #endif +#ifdef __ANDROID__ +#define OS_STRING "Android" +#define MINIUPNPC_VERSION_STRING "2.0" +#define UPNP_VERSION_STRING "UPnP/1.1" +#endif + /* only for malloc */ #include <stdlib.h> diff --git a/ext/miniupnpc/miniwget.c b/ext/miniupnpc/miniwget.c index 93c8aa6b..dfa6004e 100644 --- a/ext/miniupnpc/miniwget.c +++ b/ext/miniupnpc/miniwget.c @@ -55,6 +55,12 @@ #define UPNP_VERSION_STRING "UPnP/1.1" #endif +#ifdef __ANDROID__ +#define OS_STRING "Android" +#define MINIUPNPC_VERSION_STRING "2.0" +#define UPNP_VERSION_STRING "UPnP/1.1" +#endif + #include "miniwget.h" #include "connecthostport.h" #include "receivedata.h" |
