diff options
author | Philipp Sehmisch <crush@themanaworld.org> | 2009-01-25 20:34:24 +0100 |
---|---|---|
committer | Philipp Sehmisch <crush@themanaworld.org> | 2009-01-25 20:34:24 +0100 |
commit | c423c02890cfb4520da0ac75e00d1bd9f1663ce0 (patch) | |
tree | 4ae8243b49dc5675db0ee74b81132ddf11f4030b /src/net/netcomputer.hpp | |
parent | bf952256b947e9ac1586382a97d5a161c98afb22 (diff) | |
parent | a95fad458da513666da9486cd5ada3b8a15a5e78 (diff) | |
download | manaserv-c423c02890cfb4520da0ac75e00d1bd9f1663ce0.tar.gz manaserv-c423c02890cfb4520da0ac75e00d1bd9f1663ce0.tar.bz2 manaserv-c423c02890cfb4520da0ac75e00d1bd9f1663ce0.tar.xz manaserv-c423c02890cfb4520da0ac75e00d1bd9f1663ce0.zip |
Merge branch 'master' of git@gitorious.org:tmwserv/mainline
Diffstat (limited to 'src/net/netcomputer.hpp')
-rw-r--r-- | src/net/netcomputer.hpp | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/src/net/netcomputer.hpp b/src/net/netcomputer.hpp index 2c4d706a..10ffe5ae 100644 --- a/src/net/netcomputer.hpp +++ b/src/net/netcomputer.hpp @@ -48,8 +48,7 @@ class NetComputer /** * Returns <code>true</code> if this computer is connected. */ - bool - isConnected(); + bool isConnected(); /** * Disconnects the computer from the server, after sending a message. @@ -58,8 +57,7 @@ class NetComputer * NetComputer does not know which handler is sending it * (could have been chat/game/account) */ - void - disconnect(const MessageOut &msg); + void disconnect(const MessageOut &msg); /** * Queues a message for sending to a client. @@ -77,14 +75,13 @@ class NetComputer * @param channel The channel number of which the packet should * be sent. */ - void - send(const MessageOut &msg, bool reliable = true, - unsigned int channel = 0); + void send(const MessageOut &msg, bool reliable = true, + unsigned int channel = 0); /** * Returns IP address of computer in 32bit int form */ - int getIP(); + int getIP() const; private: ENetPeer *mPeer; /**< Client peer */ |