diff options
author | deva <deva> | 2006-08-25 21:20:07 +0000 |
---|---|---|
committer | deva <deva> | 2006-08-25 21:20:07 +0000 |
commit | 8196872e3b240ef93fc17dd3c05a7d97a8015d88 (patch) | |
tree | e531edeb1c7178a8e58170c84645ce8eb706624e /lib/network.h | |
parent | 347b1d8ed3a4f780f3a5c0d57a04eab05ca517a2 (diff) |
Rearranged the network and socket code.origin
Added status messages sent over the network using udp packets.
Diffstat (limited to 'lib/network.h')
-rw-r--r-- | lib/network.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/network.h b/lib/network.h index dc7d614..eb545d4 100644 --- a/lib/network.h +++ b/lib/network.h @@ -29,6 +29,7 @@ #define __MIAVLIB_NETWORK_H__ #include "socket.h" + #include "package.h" #include "frame.h" #include "status.h" @@ -55,10 +56,6 @@ public: int sendFrame(Frame *frame); Frame *recvFrame(); - // Status message communication - int sendStatus(Status *status); - int recvStatus(Status *status); - private: Socket *s; |