udp-broadcast-relay-redux: remove package
authorYanase Yuki <redacted>
Fri, 15 May 2026 07:45:14 +0000 (16:45 +0900)
committerJosef Schlehofer <redacted>
Fri, 15 May 2026 12:40:01 +0000 (14:40 +0200)
Upstream repository has been archived by the owner, so
this software is no longer maintained.
No packages depends on this.

Signed-off-by: Yanase Yuki <redacted>
net/udp-broadcast-relay-redux-openwrt/Makefile [deleted file]
net/udp-broadcast-relay-redux-openwrt/files/udp-broadcast-relay-redux.init [deleted file]
net/udp-broadcast-relay-redux-openwrt/files/udp_broadcast_relay_redux.config [deleted file]

diff --git a/net/udp-broadcast-relay-redux-openwrt/Makefile b/net/udp-broadcast-relay-redux-openwrt/Makefile
deleted file mode 100644 (file)
index b3a5c10..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-include $(TOPDIR)/rules.mk
-
-PKG_NAME:=udp-broadcast-relay-redux
-PKG_RELEASE:=3
-PKG_LICENSE:=GPL-2.0
-
-PKG_SOURCE_PROTO:=git
-PKG_SOURCE_URL:=https://github.com/udp-redux/udp-broadcast-relay-redux
-PKG_SOURCE_DATE:=2021-04-05
-PKG_SOURCE_VERSION:=671372938b55a186625a80516f86e8b9948c977a
-PKG_MIRROR_HASH:=c506e32767233c7dcf079f45055ba14ecca70add5921141c4d9d8fe8499e7a65
-
-include $(INCLUDE_DIR)/package.mk
-
-define Package/udp-broadcast-relay-redux
-  SECTION:=net
-  CATEGORY:=Network
-  SUBMENU:=Routing and Redirection
-  TITLE:=listens for packets on a specified UDP broadcast port and replays them
-  URL:=https://github.com/udp-redux/udp-broadcast-relay-redux
-endef
-
-define Package/udp-broadcast-relay-redux/description
-       This program listens for packets on a specified UDP broadcast port.
-       When a packet is received, it sends that packet to all specified interfaces but
-       the one it came from as though it originated from the original sender.
-       The primary purpose of this is to allow games on machines on separated
-       local networks (Ethernet, WLAN) that use udp broadcasts to find each other to do so.
-       It also works on ppp links, so you can log in from windows boxes (e.g. using pptp)
-       and play LAN-based games together. Currently, you have to care about upcoming or
-       downgoing interfaces yourself.
-endef
-
-define Package/udp-broadcast-relay-redux/conffiles
-/etc/config/udp_broadcast_relay_redux
-endef
-
-define Build/Compile
-       $(TARGET_CC) $(TARGET_CFLAGS) $(PKG_BUILD_DIR)/main.c -o $(PKG_BUILD_DIR)/$(PKG_NAME)
-endef
-
-define Package/udp-broadcast-relay-redux/install
-       $(INSTALL_DIR) $(1)/usr/sbin $(1)/etc/config $(1)/etc/init.d
-       $(CP) $(PKG_BUILD_DIR)/$(PKG_NAME) $(1)/usr/sbin/
-       $(INSTALL_CONF) ./files/udp_broadcast_relay_redux.config $(1)/etc/config/udp_broadcast_relay_redux
-       $(INSTALL_BIN) ./files/udp-broadcast-relay-redux.init $(1)/etc/init.d/udp-broadcast-relay-redux
-endef
-
-$(eval $(call BuildPackage,udp-broadcast-relay-redux))
diff --git a/net/udp-broadcast-relay-redux-openwrt/files/udp-broadcast-relay-redux.init b/net/udp-broadcast-relay-redux-openwrt/files/udp-broadcast-relay-redux.init
deleted file mode 100644 (file)
index cafa4ef..0000000
+++ /dev/null
@@ -1,81 +0,0 @@
-#!/bin/sh /etc/rc.common
-
-START=90
-STOP=10
-
-USE_PROCD=1
-PROG=/usr/sbin/udp-broadcast-relay-redux
-NAME=udp-broadcast-relay-redux
-PIDCOUNT=0
-
-validate_section_udp_broadcast_relay_redux()
-{
-    uci_validate_section udp_broadcast_relay_redux udp_broadcast_relay_redux "${1}" \
-       'id:uinteger' \
-       'port:port' \
-       'network:list(string)' \
-       'src_override:ip4addr' \
-       'dest_override:ip4addr' \
-       'multicast:ip4addr'
-
-    [ -z "$id" ] && return 1
-
-    [ -z "$network" ] && return 1
-
-    [ -z "$port" ] && return 1
-
-    return 0
-}
-
-udp_broadcast_relay_redux_instance() {
-    local net network ifname id port src_override dest_override multicast
-
-    validate_section_udp_broadcast_relay_redux "${1}" || {
-       echo "Validation failed"
-       return 1
-    }
-
-    PIDCOUNT="$((PIDCOUNT + 1))"
-
-    procd_open_instance
-    procd_set_param command "$PROG" "--id" "${id}" "--port" "${port}"
-
-    for net in $network; do
-       network_get_device ifname "$net"
-       if [ -z "$ifname" ]; then
-           network_get_physdev ifname "$net"
-       fi
-       if [ -n "$ifname" ]; then
-           procd_append_param command "--dev" "$ifname"
-           procd_append_param netdev "$ifname"
-       fi
-    done
-
-    if [ -n "$src_override" ] ; then
-        procd_append_param command "-s" "$src_override"
-    fi
-
-    if [ -n "$dest_override" ] ; then
-        procd_append_param command "-t" "$dest_override"
-    fi
-
-    if [ -n "$multicast" ] ; then
-        procd_append_param command "--multicast" "$multicast"
-    fi
-
-    procd_add_jail ubr-${PIDCOUNT} cgroupsns
-    procd_close_instance
-}
-
-start_service() {
-    . /lib/functions.sh
-    . /lib/functions/network.sh
-
-    config_load udp_broadcast_relay_redux
-    config_foreach udp_broadcast_relay_redux_instance udp_broadcast_relay_redux
-}
-
-service_triggers() {
-    procd_add_reload_trigger "udp_broadcast_relay_redux"
-    procd_add_validation validate_section_udp_broadcast_relay_redux
-}
diff --git a/net/udp-broadcast-relay-redux-openwrt/files/udp_broadcast_relay_redux.config b/net/udp-broadcast-relay-redux-openwrt/files/udp_broadcast_relay_redux.config
deleted file mode 100644 (file)
index 6ba4de2..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-#config udp_broadcast_relay_redux
-#       option id 1
-#       option port 47624
-#       list network lan
-#       list network vpnsrv
-#       option dest_override 10.66.2.13
-#       option multicast 239.255.255.250
git clone https://git.99rst.org/PROJECT