diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2023-12-07 21:31:49 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2023-12-07 21:31:49 +0100 |
commit | 79b59f9b30fb6a1fdf8c3efb446271f7cb00d434 (patch) | |
tree | f6ade4ccbc3af20d825edacfd12b5da8ded8d240 /FICS/ficsmain.h |
FICS 1.6.2
Diffstat (limited to 'FICS/ficsmain.h')
-rw-r--r-- | FICS/ficsmain.h | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/FICS/ficsmain.h b/FICS/ficsmain.h new file mode 100644 index 0000000..dd7d98d --- /dev/null +++ b/FICS/ficsmain.h @@ -0,0 +1,61 @@ +/* ficsmain.h + * + */ + +/* + fics - An internet chess server. + Copyright (C) 1993 Richard V. Nash + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. +*/ + +/* Revision history: + name email yy/mm/dd Change + Richard Nash 93/10/22 Created +*/ + +#ifndef _FICSMAIN_H +#define _FICSMAIN_H + +/* Heartbead functions occur approx in this time, including checking for + * new connections and decrementing timeleft counters. */ +#define HEARTBEATTIME 2 + +/* Number of seconds that an idle connection can stand at login or password + * prompt. */ +#define MAX_LOGIN_IDLE 120 + +/* Players who have been idle for more than 1 hour is logged out */ +#define MAX_IDLE_TIME 3600 + +/* This is the socket that the current command came in on */ +extern int current_socket; + +#define DEFAULT_PROMPT "fics% " + +#define MESS_WELCOME "welcome" +#define MESS_LOGIN "login" +#define MESS_LOGOUT "logout" +#define MESS_MOTD "motd" +#define MESS_ADMOTD "admotd" +#define MESS_UNREGISTERED "unregistered" + +#define STATS_MESSAGES "messages" +#define STATS_LOGONS "logons" +#define STATS_GAMES "games" +#define STATS_JOURNAL "journal" + +/* Arguments */ +extern int port; +extern int withConsole; +extern time_t time(); + +#endif /* _FICSMAIN_H */ |