aboutsummaryrefslogtreecommitdiffstats
path: root/libglouglou/libglouglou.h
diff options
context:
space:
mode:
authorLaurent Ghigonis <laurent@p1sec.com>2012-12-02 13:48:22 +0100
committerLaurent Ghigonis <laurent@p1sec.com>2012-12-02 13:48:22 +0100
commit48ebad3de372518bf3773fd471a616717ca8a48c (patch)
treef7da867d868ddefd53801981f5ff547b779a52cb /libglouglou/libglouglou.h
parentMerge branch 'sendbuf' (diff)
downloadglouglou-48ebad3de372518bf3773fd471a616717ca8a48c.tar.xz
glouglou-48ebad3de372518bf3773fd471a616717ca8a48c.zip
reorganise functions order.
no functionnal change. TODO--
Diffstat (limited to 'libglouglou/libglouglou.h')
-rw-r--r--libglouglou/libglouglou.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libglouglou/libglouglou.h b/libglouglou/libglouglou.h
index 989bdff..3fdd2ae 100644
--- a/libglouglou/libglouglou.h
+++ b/libglouglou/libglouglou.h
@@ -160,15 +160,15 @@ struct gg_server *gg_server_start(struct event_base *, char *, int,
int (*handle_conn)(struct gg_server *, struct gg_user *),
int (*handle_packet)(struct gg_server *, struct gg_user *, struct gg_packet *),
void *);
-int gg_server_send(struct gg_server *, struct gg_packet *, struct gg_user *);
void gg_server_stop(struct gg_server *);
+int gg_server_send(struct gg_server *, struct gg_packet *, struct gg_user *);
struct gg_client *gg_client_connect(struct event_base *, char *, int,
int (*handle_conn)(struct gg_client *),
int (*handle_packet)(struct gg_client *, struct gg_packet *),
void *);
-int gg_client_send(struct gg_client *, struct gg_packet *);
void gg_client_disconnect(struct gg_client *);
+int gg_client_send(struct gg_client *, struct gg_packet *);
int gg_verbosity_get(void);
void gg_verbosity_set(int);