diff options
Diffstat (limited to 'data')
| -rwxr-xr-x | data/database/tables-Pg.sql | 7 | ||||
| -rwxr-xr-x | data/masterserver-config.pl | 9 |
2 files changed, 12 insertions, 4 deletions
diff --git a/data/database/tables-Pg.sql b/data/database/tables-Pg.sql index 1502c05..0778797 100755 --- a/data/database/tables-Pg.sql +++ b/data/database/tables-Pg.sql @@ -14,6 +14,13 @@ CREATE TABLE serverlist( updated timestamptz NOT NULL DEFAULT NOW() ); +-- TODO +CREATE TABLE user_stats( + gamename VARCHAR(50) NOT NULL DEFAULT ' ', + requests INTEGER NOT NULL DEFAULT 1, + beacons INTEGER NOT NULL DEFAULT 1 +); + CREATE TABLE pending( id SERIAL UNIQUE NOT NULL PRIMARY KEY, ip inet NOT NULL DEFAULT '0.0.0.0', diff --git a/data/masterserver-config.pl b/data/masterserver-config.pl index d9f29c9..0755672 100755 --- a/data/masterserver-config.pl +++ b/data/masterserver-config.pl @@ -54,8 +54,9 @@ our %S = ( printlog => 1, # which messages do you NOT want to see in the logs (and screen)? - suppress => "debug_spam load hostname udp update add remove", - + suppress => "debug_spam load hostname udp add update delete secure beacon", + #suppress => "none", + ################################################################################ # Network settings # # # @@ -82,7 +83,7 @@ our %S = ( debug_validate => 0, # accept only servers that pass the secure/validate challenge, takes longer - require_secure_beacons => 1, + require_secure_beacons => 0, # ignore keys from games that use multiple keys or do not support keys at all ignore_beacon_key => "deusex ut", @@ -114,7 +115,7 @@ our %S = ( # Collect server information for the 333networks main site. Identical # mechanism as the Beacon Checker. Disable when not interested in UT info. utserver_query_enabled => 1, - utserver_query_time => [90, 0.125, 240], + utserver_query_time => [90, 0.15, 240], # Maintenance duties like cleaning out old servers/players maintenance_time => [3600, 60], |
