https://github.com/openwrt/omcproxy
OpenWrt embedded IGMPv3/MLDv2 Proxy
https://github.com/openwrt/omcproxy
Last synced: 11 months ago
JSON representation
OpenWrt embedded IGMPv3/MLDv2 Proxy
- Host: GitHub
- URL: https://github.com/openwrt/omcproxy
- Owner: openwrt
- License: apache-2.0
- Created: 2015-08-24T08:22:57.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2025-02-27T07:28:21.000Z (over 1 year ago)
- Last Synced: 2025-06-09T15:12:05.781Z (about 1 year ago)
- Language: C
- Homepage:
- Size: 41 KB
- Stars: 36
- Watchers: 8
- Forks: 23
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# omcproxy - Embedded IGMPv3 and MLDv2 proxy
omcproxy is an IGMPv3 and MLDv2 multicast proxy for use in embedded Linux
devices like routers. It is small in size and can be compiled to <40 KB.
It is partly based on code of https://github.com/Oryon/pimbd
## Specifications and Features
1. Source-Specific Multicast Querier
- MLDv2 querier (based on RFC 3810)
- IGMPv3 querier (based on RFC 3376)
2. Multicast Proxying (based on RFC 4605)
- Kernel-space multicast routing
- Multiple instances support
- Address-scope specific proxying
## Compiling
omcproxy uses libubox as submodule, be sure to clone this git repository
with --recursive or run: "git submodule init; git submodule update"
after cloning. If you are already using libubox as a shared library
just pass -DWITH_LIBUBOX=1 to cmake.
omcproxy uses cmake:
- To prepare a Makefile use: "cmake ."
- To build / install use: "make" / "make install" afterwards.
- To build DEB or RPM packages use: "make package" afterwards.