miniupnp/miniupnpc
Thomas Bernard 90b8f3711c miniupnpc: add miniupnpc.pc for pkg-config
fixes #281
2018-02-22 15:31:34 +01:00
..
java
man3 miniupnpc: fix typo 2018-02-03 01:12:45 +08:00
msvc Add project files for MS Visual Studio 2010 2018-02-17 18:06:57 +01:00
testdesc
testreplyparse
.gitignore update .gitignore for win32 files 2016-12-30 16:42:33 +01:00
CMakeLists.txt Fix issue in CMakeLists.txt. 2017-06-12 19:13:18 +08:00
Changelog.txt fix typo 2018-01-09 09:33:31 +08:00
LICENSE
MANIFEST.in cli:py: do not ship binaries in sdist 2017-08-25 16:06:26 +02:00
Makefile miniupnpc: add miniupnpc.pc for pkg-config 2018-02-22 15:31:34 +01:00
Makefile.mingw
README =>2017. http => https 2017-07-06 00:03:12 +02:00
VERSION
apiversions.txt
codelength.h
connecthostport.c Send error logs to stderr. 2017-04-21 11:25:49 +02:00
connecthostport.h
external-ip.sh Update external-ip.sh, only output on success 2017-09-28 15:14:22 -07:00
igd_desc_parse.c
igd_desc_parse.h
listdevices.c
mingw32make.bat
minihttptestserver.c miniupnpc: fix typo 2018-02-03 01:12:45 +08:00
minisoap.c Update file headers. 2017 => 2018 etc. 2018-01-16 02:06:46 +01:00
minisoap.h
minissdpc.c Fixed incompatible types (from 'int *' to 'const char *') warning #2 2017-09-18 20:27:10 +03:00
minissdpc.h
miniupnpc.c Update file headers. 2017 => 2018 etc. 2018-01-16 02:06:46 +01:00
miniupnpc.def
miniupnpc.h Update file headers. 2017 => 2018 etc. 2018-01-16 02:06:46 +01:00
miniupnpc_declspec.h
miniupnpcmodule.c miniupnpc:py: allow desc and remote to be None for addportmapping and addanyportmapping 2017-07-19 13:44:26 +02:00
miniupnpcstrings.h.cmake
miniupnpcstrings.h.in
miniupnpctypes.h
miniwget.c miniupnpc: Fix CVE-2017-8798 2017-05-09 12:00:47 +02:00
miniwget.h
minixml.c minixml.c: fix heap buffer overflow 2017-12-11 14:59:29 +01:00
minixml.h
minixmlvalid.c
portlistingparse.c miniupnpc: update Changelog.txt and 2015=>2016 2016-12-16 09:59:10 +01:00
portlistingparse.h
pymoduletest.py Update file headers. 2017 => 2018 etc. 2018-01-16 02:06:46 +01:00
pymoduletest3.py fix typo 2018-01-09 09:33:31 +08:00
receivedata.c Send error logs to stderr. 2017-04-21 11:25:49 +02:00
receivedata.h
setup.py allow setup.py to call another make executable that 'make' 2017-07-19 19:44:30 +02:00
setupmingw32.py
testigddescparse.c
testminiwget.c Update file headers. 2017 => 2018 etc. 2018-01-16 02:06:46 +01:00
testminiwget.sh Update file headers. 2017 => 2018 etc. 2018-01-16 02:06:46 +01:00
testminixml.c
testportlistingparse.c
testupnpigd.py
testupnpreplyparse.c miniupnpc: improve testupnpreplyparse 2017-12-12 11:07:09 +01:00
testupnpreplyparse.sh
updateminiupnpcstrings.sh
upnpc.c => 2017 2017-05-26 17:27:20 +02:00
upnpcommands.c fix potential mem leaks in upnpcommands.c 2017-01-09 10:18:16 +01:00
upnpcommands.h
upnpdev.c
upnpdev.h
upnperrors.c
upnperrors.h
upnpreplyparse.c upnpreplyparse.c: NameValueParserEndElt() rename arg to avoid confusion 2017-12-12 12:21:38 +01:00
upnpreplyparse.h
wingenminiupnpcstrings.c

README

Project: miniupnp
Project web page: http://miniupnp.free.fr/ or https://miniupnp.tuxfamily.org/
github: https://github.com/miniupnp/miniupnp
Author: Thomas Bernard
Copyright (c) 2005-2017 Thomas Bernard
This software is subject to the conditions detailed in the
LICENSE file provided within this distribution.


* miniUPnP Client - miniUPnPc *

To compile, simply run 'gmake' (could be 'make' on your system).
Under win32, to compile with MinGW, type "mingw32make.bat".
MS Visual C solution and project files are supplied in the msvc/ subdirectory.

The compilation is known to work under linux, FreeBSD,
OpenBSD, MacOS X, AmigaOS and cygwin.
The official AmigaOS4.1 SDK was used for AmigaOS4 and GeekGadgets for AmigaOS3.
upx (http://upx.sourceforge.net) is used to compress the win32 .exe files.

To install the library and headers on the system use :
> su
> make install
> exit

alternatively, to install into a specific location, use :
> INSTALLPREFIX=/usr/local make install

upnpc.c is a sample client using the libminiupnpc.
To use the libminiupnpc in your application, link it with
libminiupnpc.a (or .so) and use the following functions found in miniupnpc.h,
upnpcommands.h and miniwget.h :
- upnpDiscover()
- UPNP_GetValidIGD()
- miniwget()
- parserootdesc()
- GetUPNPUrls()
- UPNP_* (calling UPNP methods)

Note : use #include <miniupnpc/miniupnpc.h> etc... for the includes
and -lminiupnpc for the link

Discovery process is speeded up when MiniSSDPd is running on the machine.


* Python module *

you can build a python module with 'make pythonmodule'
and install it with 'make installpythonmodule'.
setup.py (and setupmingw32.py) are included in the distribution.


Feel free to contact me if you have any problem :
e-mail : miniupnp@free.fr

If you are using libminiupnpc in your application, please
send me an email !

For any question, you can use the web forum :
https://miniupnp.tuxfamily.org/forum/

Bugs should be reported on github :
https://github.com/miniupnp/miniupnp/issues