diff options
author | Joachim Breitner <mail@joachim-breitner.de> | 2003-09-15 00:00:00 +0200 |
---|---|---|
committer | Joachim Breitner <mail@joachim-breitner.de> | 2013-10-21 23:00:20 +0200 |
commit | c2514c2d64b46d276719091b0a813740a71d2bc2 (patch) | |
tree | 0d4dd8a3bc951be5c40c03da219c7271bd0b487b /README | |
download | udp-broadcast-relay-c2514c2d64b46d276719091b0a813740a71d2bc2.tar.gz udp-broadcast-relay-c2514c2d64b46d276719091b0a813740a71d2bc2.zip |
Import udp_broadcast_relay-0.1.tar.gz
Diffstat (limited to 'README')
-rw-r--r-- | README | 62 |
1 files changed, 62 insertions, 0 deletions
@@ -0,0 +1,62 @@ +UDP Broadcast Packet Relay +============================== + +This program listens for packets on a specified UDP broadcast. +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. + +INSTALL +------- +make ; cp udp_broadcast_relay /some/where + + +USAGE +----- +/some/where/udp_broadcast_relay udp-port + +udp_broadcast_relay must be run as boot to be able to create a raw +socket (necessary) to send packets though they originated from the +original sender) + + +COMPATIBILITY +------------- +- I run debian woody with Linux 2.4.20, and here it works. + + +EXAMPLE +------- +/some/where/udp_broadcast_relay 2116 # forward Warcraft 3 broadcast packets + + +BUGS/CRITICISM/PATCHES/ETC +-------------------------- +web: http://www.joachim-breitner.de/udp_forward_relay/ +e-mail: Joachim Breitner <mail@joachim-breitner.de> + +HISTORY +------ +0.1 2003-09-15 + Initial rewrite of udp_broadcast_fw + +CREDITS +------- +This is based upon udp_broadcast_fw: +Web: http://www.serverquery.com/udp_broadcast_fw/ +Email: Nathan O'Sullivan <nathan@ausgamers.com> + +HISTORY of udp_broadcast_fw +------- +0.1.1 - 19 Feb 02 + Moved fork() code to just before main loop so that errors would appear +0.1 - 18 Feb 02 + Initial release + +LICENSE +------- +This code is made available under the GPL. Read COPYING for more info. |