[Ircphpstats-devel] [CVS] Module phpstats: Change committed
Status: Inactive
Brought to you by:
mrvolta
|
From: Mr. v. <mr...@us...> - 2003-06-05 08:09:16
|
Committer : volta <mr...@us...>
CVSROOT : /cvsroot/ircphpstats
Module : phpstats
Commit time: 2003-06-05 08:09:14 UTC
Modified files:
options.php
Log message:
New option: SOCKET_TIMEOUT
---------------------- diff included ----------------------
Index: phpstats/options.php
diff -u phpstats/options.php:1.1 phpstats/options.php:1.2
--- phpstats/options.php:1.1 Fri Mar 14 11:43:10 2003
+++ phpstats/options.php Thu Jun 5 01:09:03 2003
@@ -5,19 +5,22 @@
E-mail: <vo...@gm...>
This program is free but copyrighted software; see the file LICENSE for
details.
- $Id: options.php,v 1.1 2003/03/14 19:43:10 mrvolta Exp $
+ $Id: options.php,v 1.2 2003/06/05 08:09:03 mrvolta Exp $
*/
$a = 1;
// Uplink information
define(UPLINK,'127.0.0.1');
-define(PORT,'4400'); // uplink port ... should be a serverport
-define(PASS,'stats'); // non-crypted uplink password
+define(PORT,'4400'); // Uplink port ... should be a serverport
+define(PASS,'stats'); // Non-crypted uplink password
+
+// Socket information
+define(SOCKET_TIMEOUT,120); // The timeout value of the socket in seconds
// Own server information
define(SERVERNAME,'stats.undernet.org');
define(SERVERNUM,'Ay'); // Our own server numeric in base64
-define(MAXCLIENTS,'AAA'); // You shouldn't change this, there aren't any clients anyway
+define(MAXCLIENTS,'AAA'); // You shouldn't change this, there aren't any clients anyway :P
define(SERVERDESC,'Tha Statistical Service is watching you'); // Server's description in /LINKS
// SQL database information
----------------------- End of diff -----------------------
|