diff options
author | truelight <truelight@openttd.org> | 2005-01-15 20:09:16 +0000 |
---|---|---|
committer | truelight <truelight@openttd.org> | 2005-01-15 20:09:16 +0000 |
commit | 24c9e6ff66c6386a182b0fe5eef5f371793b468e (patch) | |
tree | be21df9ed89b0080e4d32a5e54c3f2dffd9f3437 /network_client.h | |
parent | e6d31cb89c43feebcd114d197166588e7ede72d3 (diff) | |
download | openttd-24c9e6ff66c6386a182b0fe5eef5f371793b468e.tar.xz |
(svn r1527) -Add: RCon (Remote Connection). A server can set:
'set rcon_pw <password>'
Which enables rcon. A client can now do:
'rcon <password> "<command>"'
The command will be executed on the server. (guru3)
-Fix: 'kick 1' did crash dedicated servers
-Fix: server password is now correctly saved
!!Warning!!: do not give your rcon password to people you do not thrust!
Diffstat (limited to 'network_client.h')
-rw-r--r-- | network_client.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/network_client.h b/network_client.h index dd839a1f5..7e665e351 100644 --- a/network_client.h +++ b/network_client.h @@ -13,6 +13,7 @@ DEF_CLIENT_SEND_COMMAND_PARAM(PACKET_CLIENT_PASSWORD)(NetworkPasswordType type, DEF_CLIENT_SEND_COMMAND_PARAM(PACKET_CLIENT_SET_PASSWORD)(const char *password); DEF_CLIENT_SEND_COMMAND_PARAM(PACKET_CLIENT_SET_NAME)(const char *name); DEF_CLIENT_SEND_COMMAND(PACKET_CLIENT_ACK); +DEF_CLIENT_SEND_COMMAND_PARAM(PACKET_CLIENT_RCON)(const char *pass, const char *command); NetworkRecvStatus NetworkClient_ReadPackets(NetworkClientState *cs); void NetworkClient_Connected(void); |