1
0
Fork 0

(svn r3407) - Feature: Kick and ban now with IP numbers.

release/0.4.5
Darkvater 2006-01-19 15:58:57 +00:00
parent 26226f1d43
commit a292621b14
3 changed files with 36 additions and 9 deletions

View File

@ -365,26 +365,31 @@ DEF_CONSOLE_CMD(ConBan)
uint32 index; uint32 index;
if (argc == 0) { if (argc == 0) {
IConsoleHelp("Ban a player from a network game. Usage: 'ban <client-id>'"); IConsoleHelp("Ban a player from a network game. Usage: 'ban <ip | client-id>'");
IConsoleHelp("For client-id's, see the command 'clients'"); IConsoleHelp("For client-id's, see the command 'clients'");
return true; return true;
} }
if (argc != 2) return false; if (argc != 2) return false;
index = atoi(argv[1]); if (strchr(argv[1], '.') == NULL) {
index = atoi(argv[1]);
ci = NetworkFindClientFromIndex(index);
} else {
ci = NetworkFindClientFromIP(argv[1]);
index = (ci == NULL) ? 0 : ci->client_index;
}
if (index == NETWORK_SERVER_INDEX) { if (index == NETWORK_SERVER_INDEX) {
IConsolePrint(_icolour_def, "Silly boy, you can not ban yourself!"); IConsolePrint(_icolour_def, "Silly boy, you can not ban yourself!");
return true; return true;
} }
if (index == 0) { if (index == 0) {
IConsoleError("Invalid Client-ID"); IConsoleError("Invalid Client-ID");
return true; return true;
} }
ci = NetworkFindClientInfoFromIndex(index);
if (ci != NULL) { if (ci != NULL) {
uint i; uint i;
/* Add user to ban-list */ /* Add user to ban-list */
@ -407,7 +412,7 @@ DEF_CONSOLE_CMD(ConUnBan)
uint i, index; uint i, index;
if (argc == 0) { if (argc == 0) {
IConsoleHelp("Unban a player from a network game. Usage: 'unban <ip | id>'"); IConsoleHelp("Unban a player from a network game. Usage: 'unban <ip | client-id>'");
IConsoleHelp("For a list of banned IP's, see the command 'banlist'"); IConsoleHelp("For a list of banned IP's, see the command 'banlist'");
return true; return true;
} }
@ -528,25 +533,31 @@ DEF_CONSOLE_CMD(ConKick)
uint32 index; uint32 index;
if (argc == 0) { if (argc == 0) {
IConsoleHelp("Kick a player from a network game. Usage: 'kick <client-id>'"); IConsoleHelp("Kick a player from a network game. Usage: 'kick <ip | client-id>'");
IConsoleHelp("For client-id's, see the command 'clients'"); IConsoleHelp("For client-id's, see the command 'clients'");
return true; return true;
} }
if (argc != 2) return false; if (argc != 2) return false;
index = atoi(argv[1]); if (strchr(argv[1], '.') == NULL) {
index = atoi(argv[1]);
ci = NetworkFindClientFromIndex(index);
} else {
ci = NetworkFindClientFromIP(argv[1]);
index = (ci == NULL) ? 0 : ci->client_index;
}
if (index == NETWORK_SERVER_INDEX) { if (index == NETWORK_SERVER_INDEX) {
IConsolePrint(_icolour_def, "Silly boy, you can not kick yourself!"); IConsolePrint(_icolour_def, "Silly boy, you can not kick yourself!");
return true; return true;
} }
if (index == 0) { if (index == 0) {
IConsoleError("Invalid client-id"); IConsoleError("Invalid client-id");
return true; return true;
} }
ci = NetworkFindClientInfoFromIndex(index);
if (ci != NULL) { if (ci != NULL) {
SEND_COMMAND(PACKET_SERVER_ERROR)(NetworkFindClientStateFromIndex(index), NETWORK_ERROR_KICKED); SEND_COMMAND(PACKET_SERVER_ERROR)(NetworkFindClientStateFromIndex(index), NETWORK_ERROR_KICKED);
} else } else

View File

@ -65,6 +65,21 @@ NetworkClientInfo *NetworkFindClientInfoFromIndex(uint16 client_index)
return NULL; return NULL;
} }
/** Return the CI for a given IP
* @param ip IP of the client we are looking for. This must be in string-format
* @return return a pointer to the corresponding NetworkClientInfo struct or NULL on failure */
NetworkClientInfo *NetworkFindClientInfoFromIP(const char *ip)
{
NetworkClientInfo *ci;
uint32 ip_number = inet_addr(ip);
for (ci = _network_client_info; ci != &_network_client_info[MAX_CLIENT_INFO]; ci++) {
if (ci->client_ip == ip_number) return ci;
}
return NULL;
}
// Function that looks up the CS for a given client-index // Function that looks up the CS for a given client-index
NetworkClientState *NetworkFindClientStateFromIndex(uint16 client_index) NetworkClientState *NetworkFindClientStateFromIndex(uint16 client_index)
{ {

View File

@ -226,6 +226,7 @@ void NetworkGetClientName(char *clientname, size_t size, const NetworkClientStat
uint NetworkCalculateLag(const NetworkClientState *cs); uint NetworkCalculateLag(const NetworkClientState *cs);
byte NetworkGetCurrentLanguageIndex(void); byte NetworkGetCurrentLanguageIndex(void);
NetworkClientInfo *NetworkFindClientInfoFromIndex(uint16 client_index); NetworkClientInfo *NetworkFindClientInfoFromIndex(uint16 client_index);
NetworkClientInfo *NetworkFindClientInfoFromIP(const char *ip);
NetworkClientState *NetworkFindClientStateFromIndex(uint16 client_index); NetworkClientState *NetworkFindClientStateFromIndex(uint16 client_index);
unsigned long NetworkResolveHost(const char *hostname); unsigned long NetworkResolveHost(const char *hostname);