home *** CD-ROM | disk | FTP | other *** search
- #!tcl
-
- #
- # Microsoft DirectX 8 mappings
- #
- if {$argc == 0} {
- error {Usage: dx8 IPaddress|off}
- }
- set addr [lindex $argv 0]
- if {$addr == "off"} {
- exec "ppmaps delete udp 6703"
- exec "ppmaps delete udp 2302:2400"
- } else {
- exec "ppmap add udp 6703 $addr 6703"
- exec "ppmap add udp 2302:2400 $addr 2302"
- }
-