libjuice 🍋💦 (JUICE is a UDP Interactive Connectivity Establishment library) allows to open bidirectionnal User Datagram Protocol (UDP) streams with Network Address Translator (NAT) traversal.
The library is a simplified implementation of the Interactive Connectivity Establishment (ICE) protocol written in pure C without dependencies for POSIX platforms (including Linux and Apple macOS) and Microsoft Windows. It supports only a single component over UDP per session in a standard single-gateway network topology, as this should be sufficient for the majority of use cases nowadays.
Licensed under LGPLv2, see LICENSE.
The library aims at implementing a simplified but fully compatible ICE agent (RFC8445, RFC8489 for STUN, and RFC8656 for TURN) with an interface based on SDP (RFC4566). It supports both IPv4 and IPv6.
The limitations compared to a fully-featured ICE agent are:
- Only UDP is supported as transport protocol. Other protocols are ignored.
- Only one component is supported. This is sufficient for WebRTC Data Channels or multiplexed RTP/RTCP (RFC5731).
- Candidates are gathered without binding to specific network interfaces. This should behave identically to the full implementation on most client systems and allows to greatly reduce complexity.
None!
Optionally, Nettle (https://www.lysator.liu.se/~nisse/nettle/) can provide the HMAC-SHA1 algorithm instead of the internal implementation.
$ git clone https://github.com/paullouisageneau/libjuice.git
$ cd libjuice
The CMake library targets libjuice
and libjuice-static
respectively correspond to the shared and static libraries. The default target will build the library and tests.
$ cmake -B build
$ cd build
$ make -j2
The option USE_NETTLE
allows to use the Nettle library instead of the internal implementation for HMAC-SHA1:
$ cmake -B build -DUSE_NETTLE=1
$ cd build
$ make -j2
$ cmake -B build -DCMAKE_TOOLCHAIN_FILE=/usr/share/mingw/toolchain-x86_64-w64-mingw32.cmake # replace with your toolchain file
$ cd build
$ make -j2
$ cmake -B build -G "NMake Makefiles"
$ cd build
$ nmake
$ make
The option USE_NETTLE
allows to use the Nettle library instead of the internal implementation for HMAC-SHA1:
$ make USE_NETTLE=1
See test/connectivity.c for a complete local connection example.