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

..03-May-2022-

doc/H03-May-2022-1,8121,593

examples/H03-May-2022-1,8501,325

internal/H18-Sep-2021-42

libgupnp/H03-May-2022-22,76114,402

subprojects/H18-Sep-2021-166100

tests/H18-Sep-2021-918727

tools/H03-May-2022-546428

vala/H18-Sep-2021-8373

.clang-formatH A D18-Sep-20213.8 KiB138136

.editorconfigH A D18-Sep-2021171 1410

.gitlab-ci.ymlH A D18-Sep-20214.7 KiB196176

AUTHORSH A D18-Sep-202186 32

COPYINGH A D18-Sep-202125.9 KiB503418

NEWSH A D18-Sep-202140.7 KiB1,3901,087

README.mdH A D18-Sep-20211.5 KiB4027

gupnp.doapH A D18-Sep-20211.7 KiB3934

meson.buildH A D18-Sep-20211.6 KiB5038

README.md

1# GUPnP
2
3GUPnP is an object-oriented open source framework for creating UPnP devices and
4control points, written in C using GObject and libsoup. The GUPnP API is
5intended to be easy to use, efficient and flexible.
6
7The GUPnP framework consists of the following two libraries:
8
9  * GSSDP implements resource discovery and announcement over SSDP.
10
11  * GUPnP implements the UPnP specification: resource announcement and
12    discovery, description, control, event notification, and presentation
13    (GUPnP includes basic web server functionality through libsoup). GUPnP does
14    not include helpers for construction or control of specific standardized
15    resources (e.g. MediaServer); this is left for higher level libraries
16    utilizing the GUPnP framework.
17
18The GUPnP framework was born out of frustration with libupnp and its mess of
19threads. GUPnP is entirely single-threaded (though asynchronous), integrates
20with the GLib main loop, and provides the same set of features as libupnp while
21hiding most of the UPnP internals through an elegant object-oriented design.
22
23GUPnP is free software released under the GNU LGPL version 2.1 or later.
24
25## Building
26
27GUPnP uses the meson build system. To build GUPnP, the simplest variant is
28```
29$ meson setup build
30$ meson compile -C build
31```
32
33There are several options to customize the build, please see (meson_options.txt) for
34a brief overview.
35
36## Developer documentation
37
38The developer documentation is available at https://gnome.pages.gitlab.gnome.org/gupnp/docs/
39
40