From 142e2d3b74ad886eed83b0fc9d6cfea100dae10a Mon Sep 17 00:00:00 2001 From: sapier Date: Thu, 13 Feb 2014 20:17:42 +0100 Subject: Cleanup client init states by bumping protocol version Don't use TOSERVER_RECEIVED_MEDIA but TOSERVER_CLIENT_READY as indicatio for client ready Handle clients with protocol version < 23 (almost) same way as before Make client tell server about it's version Add client state to not send bogus player position updates prior init complete Add access to statistics information (peer connction time,rtt,version) Fix clients standing stalled in world while preloading item visuals (new clients only) Add get_player_information to read client specific information from lua --- src/exceptions.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/exceptions.h') diff --git a/src/exceptions.h b/src/exceptions.h index 970c68e40..6d6ad333a 100644 --- a/src/exceptions.h +++ b/src/exceptions.h @@ -116,6 +116,11 @@ public: FatalSystemException(const std::string &s): BaseException(s) {} }; +class ClientStateError : public BaseException { +public: + ClientStateError(std::string s): BaseException(s) {} +}; + /* Some "old-style" interrupts: */ -- cgit v1.2.3