• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

LICENSEH A D19-Apr-20151.4 KiB2823

READMEH A D19-Apr-20152.1 KiB6747

VERSIONH A D19-Apr-20154 21

bsdqueue.hH A D19-Apr-201517.7 KiB532342

codelength.hH A D19-Apr-20151.1 KiB3217

connecthostport.cH A D19-Apr-20156.1 KiB251218

connecthostport.hH A D19-Apr-2015591 195

declspec.hH A D19-Apr-2015259 1612

igd_desc_parse.cH A D19-Apr-20154.5 KiB12688

igd_desc_parse.hH A D19-Apr-20151.5 KiB4925

minisoap.cH A D19-Apr-20153.4 KiB12283

minisoap.hH A D19-Apr-2015498 165

minissdpc.cH A D19-Apr-20153.1 KiB134112

minissdpc.hH A D19-Apr-2015486 165

miniupnpc.cH A D19-Apr-201526.8 KiB1,005857

miniupnpc.hH A D19-Apr-20153.7 KiB13159

miniupnpcstrings.h.cmakeH A D19-Apr-2015178 85

miniupnpctypes.hH A D19-Apr-2015610 2010

miniwget.cH A D19-Apr-201514.4 KiB575490

miniwget.hH A D19-Apr-2015700 3114

minixml.cH A D19-Apr-20155.3 KiB217169

minixml.hH A D19-Apr-20151.2 KiB3816

portlistingparse.cH A D19-Apr-20153.5 KiB160135

portlistingparse.hH A D19-Apr-20151.9 KiB7242

receivedata.cH A D19-Apr-20152.7 KiB10588

receivedata.hH A D19-Apr-2015712 206

upnpcommands.cH A D19-Apr-201530.1 KiB1,098910

upnpcommands.hH A D19-Apr-20159.4 KiB272129

upnperrors.cH A D19-Apr-20152 KiB10595

upnperrors.hH A D19-Apr-2015600 2711

upnpreplyparse.cH A D19-Apr-20154.1 KiB184158

upnpreplyparse.hH A D19-Apr-20151.5 KiB7045

README

1Project: miniupnp
2Project web page: http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/
3github: https://github.com/miniupnp/miniupnp
4freecode: http://freecode.com/projects/miniupnp
5Author: Thomas Bernard
6Copyright (c) 2005-2012 Thomas Bernard
7This software is subject to the conditions detailed in the
8LICENSE file provided within this distribution.
9
10
11For the comfort of Win32 users, bsdqueue.h is included in the distribution.
12Its licence is included in the header of the file.
13bsdqueue.h is a copy of the sys/queue.h of an OpenBSD system.
14
15
16* miniUPnP Client - miniUPnPc *
17
18To compile, simply run 'gmake' (could be 'make' on your system).
19Under win32, to compile with MinGW, type "mingw32make.bat".
20MS Visual C solution and project files are supplied in the msvc/ subdirectory.
21
22The compilation is known to work under linux, FreeBSD,
23OpenBSD, MacOS X, AmigaOS and cygwin.
24The official AmigaOS4.1 SDK was used for AmigaOS4 and GeekGadgets for AmigaOS3.
25upx (http://upx.sourceforge.net) is used to compress the win32 .exe files.
26
27To install the library and headers on the system use :
28> su
29> make install
30> exit
31
32alternatively, to install into a specific location, use :
33> INSTALLPREFIX=/usr/local make install
34
35upnpc.c is a sample client using the libminiupnpc.
36To use the libminiupnpc in your application, link it with
37libminiupnpc.a (or .so) and use the following functions found in miniupnpc.h,
38upnpcommands.h and miniwget.h :
39- upnpDiscover()
40- miniwget()
41- parserootdesc()
42- GetUPNPUrls()
43- UPNP_* (calling UPNP methods)
44
45Note : use #include <miniupnpc/miniupnpc.h> etc... for the includes
46and -lminiupnpc for the link
47
48Discovery process is speeded up when MiniSSDPd is running on the machine.
49
50
51* Python module *
52
53you can build a python module with 'make pythonmodule'
54and install it with 'make installpythonmodule'.
55setup.py (and setupmingw32.py) are included in the distribution.
56
57
58Feel free to contact me if you have any problem :
59e-mail : miniupnp@free.fr
60
61If you are using libminiupnpc in your application, please
62send me an email !
63
64For any question, you can use the web forum :
65http://miniupnp.tuxfamily.org/forum/
66
67