diff options
| author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2021-03-16 12:03:06 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-16 12:03:06 +0100 |
| commit | 21b05a3944256ddbaf492731a86334f8a59b1772 (patch) | |
| tree | 6b45b9b575ebe6115a2edb441197376016d021dc /modules | |
| parent | d1d09bf8bc3205513a6a8963604c083205f2b1d7 (diff) | |
| parent | 69486b105944dbeb528b0c78e3cbe44e4c7cc657 (diff) | |
Merge pull request #45018 from akien-mga/miniupnpc-2.2.1
miniupnpc: Update to version 2.2.2
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/upnp/SCsub | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/modules/upnp/SCsub b/modules/upnp/SCsub index bc0b215be3..b2fed0cb23 100644 --- a/modules/upnp/SCsub +++ b/modules/upnp/SCsub @@ -12,18 +12,19 @@ thirdparty_obj = [] if env["builtin_miniupnpc"]: thirdparty_dir = "#thirdparty/miniupnpc/" thirdparty_sources = [ + "igd_desc_parse.c", "miniupnpc.c", - "upnpcommands.c", + "minixml.c", + "minisoap.c", + "minissdpc.c", "miniwget.c", + "upnpcommands.c", "upnpdev.c", - "igd_desc_parse.c", - "minissdpc.c", - "minisoap.c", - "minixml.c", + "upnpreplyparse.c", "connecthostport.c", - "receivedata.c", "portlistingparse.c", - "upnpreplyparse.c", + "receivedata.c", + "addr_is_reserved.c", ] thirdparty_sources = [thirdparty_dir + "miniupnpc/" + file for file in thirdparty_sources] |