summaryrefslogtreecommitdiff
path: root/include/proto.h
diff options
context:
space:
mode:
authororoborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e>2008-03-14 19:31:47 +0000
committeroroborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e>2008-03-14 19:31:47 +0000
commit593ac1e25c2053f06cb1b7e29785a695d3c57ad3 (patch)
tree15f6bb50abedc884122d40b98349e35d702b7729 /include/proto.h
parenta4e34c257a4f5966ce699f48d30b3528bdaa45e4 (diff)
- podpora UDP
git-svn-id: http://opensvn.csie.org/tuxanci_ng@15 0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e
Diffstat (limited to 'include/proto.h')
-rw-r--r--include/proto.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/proto.h b/include/proto.h
index 5813165..a741148 100644
--- a/include/proto.h
+++ b/include/proto.h
@@ -6,6 +6,8 @@
#include "tux.h"
#include "server.h"
+extern void proto_send_hello_client();
+extern void proto_recv_hello_server(client_t *client, char *msg);
extern void proto_send_init_server(client_t *client);
extern void proto_recv_init_client(char *msg);
extern void proto_send_event_server(tux_t *tux, int action, client_t *client);
@@ -20,6 +22,10 @@ extern void proto_send_additem_server(item_t *p);
extern void proto_recv_additem_client(char *msg);
extern void proto_send_context_client(tux_t *tux);
extern void proto_recv_context_server(client_t *client, char *msg);
+extern void proto_send_end_client();
+extern void proto_recv_end_server(client_t *client, char *msg);
+extern void proto_send_end_server();
+extern void proto_recv_end_client(char *msg);
#endif