parent
03c661a34f
commit
d5cba867b5
@ -0,0 +1,12 @@ |
||||
config BR2_PACKAGE_UDP_BROADCAST_RELAY |
||||
prompt "udp-broadcast-relay............... listens for packets on a specified UDP broadcast port." |
||||
tristate |
||||
default m if CONFIG_DEVEL |
||||
help |
||||
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. |
||||
|
||||
http://www.joachim-breitner.de/udp-broadcast-relay/ |
@ -0,0 +1,35 @@ |
||||
# $Id: Makefile 1146 2005-06-05 13:32:28Z nbd $
|
||||
|
||||
include $(TOPDIR)/rules.mk |
||||
|
||||
PKG_NAME:=udp-broadcast-relay
|
||||
PKG_VERSION:=0.3
|
||||
PKG_RELEASE:=1
|
||||
PKG_MD5SUM:=a32f983b7063d6ac670e6b22be9b9d24
|
||||
|
||||
PKG_SOURCE_URL:=http://www.joachim-breitner.de/udp-broadcast-relay/files/
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
PKG_CAT:=zcat
|
||||
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||
|
||||
include $(TOPDIR)/package/rules.mk |
||||
|
||||
$(eval $(call PKG_template,UDP_BROADCAST_RELAY,udp-broadcast-relay,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) |
||||
|
||||
$(PKG_BUILD_DIR)/.configured: |
||||
touch $@
|
||||
|
||||
$(PKG_BUILD_DIR)/.built: |
||||
$(TARGET_CC) $(PKG_BUILD_DIR)/main.c -o $(PKG_BUILD_DIR)/$(PKG_NAME)
|
||||
touch $@
|
||||
|
||||
$(IPKG_UDP_BROADCAST_RELAY): |
||||
mkdir -p $(IDIR_UDP_BROADCAST_RELAY)/usr/sbin
|
||||
cp $(PKG_BUILD_DIR)/$(PKG_NAME) $(IDIR_UDP_BROADCAST_RELAY)/usr/sbin/
|
||||
$(STRIP) $(IDIR_UDP_BROADCAST_RELAY)/usr/sbin/*
|
||||
$(IPKG_BUILD) $(IDIR_UDP_BROADCAST_RELAY) $(PACKAGE_DIR)
|
||||
|
||||
mostlyclean: |
||||
$(MAKE) -C $(PKG_BUILD_DIR) clean
|
||||
rm -f $(PKG_BUILD_DIR)/.built
|
@ -0,0 +1,4 @@ |
||||
Package: udp-broadcast-relay |
||||
Priority: optional |
||||
Section: net |
||||
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. |
Loading…
Reference in new issue