diff options
author | thilo <thilo@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2008-04-12 17:00:18 +0000 |
---|---|---|
committer | thilo <thilo@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2008-04-12 17:00:18 +0000 |
commit | 2f4b09a3fd677b7fb66723bd64358dd0798a2af5 (patch) | |
tree | dbbaa32ed2043db251064baacb700ffc973b7fa3 /README | |
parent | a957b652bae5d1a5320eb01c349437bc7197b91a (diff) | |
download | ioquake3-aero-2f4b09a3fd677b7fb66723bd64358dd0798a2af5.tar.gz ioquake3-aero-2f4b09a3fd677b7fb66723bd64358dd0798a2af5.zip |
- fix a potential file descriptor leak in server side of pak downloading
- add new functions for banning clients from server, in engine part. This will also make it possible to ban ipv6 addresses in old mods.
git-svn-id: svn://svn.icculus.org/quake3/trunk@1312 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'README')
-rw-r--r-- | README | 23 |
1 files changed, 23 insertions, 0 deletions
@@ -143,11 +143,34 @@ New cvars sv_dlURL - the base of the HTTP or FTP site that holds custom pk3 files for your server + net_ip6 - IPv6 address to bind to + net_port6 - port to bind to using the ipv6 address + net_enabled - enable networking, bitmask. Add up + number for option to enable it: + enable ipv4 networking: 1 + enable ipv6 networking: 2 + prioritise ipv6 over ipv4: 4 + disable multicast support: 8 + net_mcast6addr - multicast address to use for scanning for + ipv6 servers on the local network + net_mcastiface - outgoing interface to use for scan + + New commands video [filename] - start video capture (use with demo command) stopvideo - stop video capture + print - print out the contents of a cvar + banaddr <range> - ban an ip address range from joining a game on this + server, valid <range> is either playernum or CIDR + notation address range. + exceptaddr <range> - exempt an ip address range from a ban. + bandel <num> - delete ban <num> + exceptdel <num> - delete exception <num> + listbans - list all currently active bans and exceptions + rehashbans - reload the banlist from serverbans.dat + flushbans - delete all bans ------------------------------------------------------------ Miscellaneous ----- |