mirror of
				https://github.com/KartKrewDev/RingRacers.git
				synced 2025-10-30 08:01:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			68 lines
		
	
	
	
		
			2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
	
		
			2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
// Emacs style mode select   -*- C++ -*-
 | 
						|
//-----------------------------------------------------------------------------
 | 
						|
//
 | 
						|
// Copyright (C) 2000 by DooM Legacy Team.
 | 
						|
//
 | 
						|
// 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.
 | 
						|
//
 | 
						|
//-----------------------------------------------------------------------------
 | 
						|
 | 
						|
#ifndef _STATS_H_
 | 
						|
#define _STATS_H_
 | 
						|
#ifndef _IPCS_H_
 | 
						|
#error "You forget to include ipcs.h"
 | 
						|
#endif
 | 
						|
#include <time.h>
 | 
						|
 | 
						|
#define NUMLASTSERVERS 6
 | 
						|
#define SERVERMOTDTEXT "No Clans, advertising websites, Chat, Hangout, Hacked, or Role Playing Servers Allowed"
 | 
						|
 | 
						|
 | 
						|
// ================================ DEFINITIONS ===============================
 | 
						|
 | 
						|
class CServerStats
 | 
						|
{
 | 
						|
	time_t uptime; // master server uptime
 | 
						|
	char motd[2048]; // increase that if not enough
 | 
						|
	msg_server_t last_server[NUMLASTSERVERS]; // keep last 6 named registered servers
 | 
						|
	time_t last_time[NUMLASTSERVERS]; // keep date/time of registration of those servers
 | 
						|
	char version[32]; // master server version
 | 
						|
 | 
						|
public:
 | 
						|
	int num_connections;
 | 
						|
	int num_http_con;
 | 
						|
	int num_text_con;
 | 
						|
	int num_RSS92_con;
 | 
						|
	int num_RSS10_con;
 | 
						|
	int num_servers;
 | 
						|
	int num_add;
 | 
						|
	int num_removal;
 | 
						|
	int num_retrieval;
 | 
						|
	int num_autoremoval;
 | 
						|
	int num_badconnection;
 | 
						|
 | 
						|
	CServerStats();
 | 
						|
	~CServerStats();
 | 
						|
	const char *getUptime();
 | 
						|
	int getHours();
 | 
						|
	int getDays();
 | 
						|
	const char *getMotd();
 | 
						|
	const char *getLastServers();
 | 
						|
	const char *getVersion();
 | 
						|
	void putMotd(char *);
 | 
						|
	void putLastServer(msg_server_t *);
 | 
						|
};
 | 
						|
 | 
						|
// ================================== PROTOS ==================================
 | 
						|
 | 
						|
// ================================== EXTERNS =================================
 | 
						|
 | 
						|
#endif
 |