The ipbans table has a list of banned IPs, keep in mind, though that this resets when the MySQL server is restarted, so a single user may not be banned forever (people on non-static IPs shouldn't be able to punish the person getting that IP next anyways)

svn path=/trunk/boinc/; revision=13818
This commit is contained in:
Janus B. Kristensen 2007-10-10 07:57:23 +00:00
parent 383b21dd5a
commit f08a68f9ee
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
CREATE TABLE `bittorrent_ipbans` (
`ip` varbinary(256) NOT NULL default '',
`timestamp` int(14) NOT NULL,
PRIMARY KEY (`ip`)
) ENGINE=MEMORY COMMENT='Banned IPs and when they can be unbanned (reset when SQL-server restarts)';