📄 server.h
字号:
//this file is part of eMule
//Copyright (C)2002 Merkur ( merkur-@users.sourceforge.net / http://www.emule-project.net )
//
//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.
//
//You should have received a copy of the GNU General Public License
//along with this program; if not, write to the Free Software
//Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#pragma once
#include "safefile.h"
#include "types.h"
#include "packets.h"
#include "otherstructs.h"
#include <afxcoll.h>
#include <afxtempl.h>
#include <afxcmn.h>
class CServer{
public:
CServer(ServerMet_Struct* in_data);
CServer(uint16 in_port, char* i_addr);
CServer(CServer* pOld);
~CServer();
void AddTag(CTag* in_tag) {taglist->AddTail(in_tag);}
char* GetListName() {return listname;}
char* GetFullIP() {return ipfull;}
char* GetAddress();
uint16 GetPort() {return port;}
void FillWindowTags(CTreeCtrl* wnd,HTREEITEM rootitem);
bool AddTagFromFile(CSafeFile* servermet);
void SetListName(char* newname);
void SetDescription(char* newdescription);
uint32 GetIP() {return ip;}
uint32 GetFiles() {return files;}
uint32 GetUsers() {return users;}
char* GetDescription() {return description;}
uint32 GetPing() {return ping;}
uint32 GetPreferences() {return preferences;}
uint32 GetMaxUsers() {return maxusers;}
void SetMaxUsers(uint32 in_maxusers) {maxusers = in_maxusers;}
void SetUserCount(uint32 in_users) {users = in_users;}
void SetFileCount(uint32 in_files) {files = in_files;}
void ResetFailedCount() {failedcount = 0;}
void AddFailedCount() {failedcount++;}
uint32 GetFailedCount() {return failedcount;}
void SetID(uint32 newip);
char* GetDynIP() {return dynip;}
bool HasDynIP() {return dynip;}
void SetDynIP(char* newdynip);
uint32 GetLastPinged() {return lastpinged;}
void SetLastPinged(uint32 in_lastpinged) {lastpinged = in_lastpinged;}
void SetPing(uint32 in_ping) {ping = in_ping;}
void SetPreference(uint32 in_preferences) {preferences = in_preferences;}
void SetIsStaticMember(bool in) {staticservermember=in;}
bool IsStaticMember() {return staticservermember;}
uint32 GetChallenge() {return challenge;}
void SetChallenge(uint32 in_challenge) {challenge = in_challenge;}
private:
uint32 challenge;
uint32 lastpinged;
uint32 files;
uint32 users;
uint32 maxusers;
uint32 preferences;
uint32 ping;
char* description;
char* listname;
char* dynip;
uint32 tagcount;
char ipfull[17];
uint32 ip;
uint16 port;
uint32 failedcount;
CTypedPtrList<CPtrList, CTag*>* taglist;
uint8 staticservermember;
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -