Declare client_t::channel as struct channel for better type safety.
[umurmur.git] / src / client.h
index 9f17ddf3d822ec32d708a5523ec62eee69d892ea..f5346bf8b68d858d220fcdb2bd539fd7db22327b 100644 (file)
@@ -59,7 +59,9 @@
 
 #define IS_AUTH(_a_) ((_a_)->authenticated)
 
-typedef struct {   /* You can add new lines to this struct, any reordering of some of the lines will break the sharedmemory API */
+struct channel;
+
+typedef struct {
        int tcpfd;
        SSL_handle_t *ssl;
        bool_t SSLready;
@@ -83,7 +85,7 @@ typedef struct {   /* You can add new lines to this struct, any reordering of so
        struct dlist node;
        struct dlist txMsgQueue;
        int txQueueCount;
-       void *channel; /* Ugly... */
+       struct channel *channel;
        char *context;
        struct dlist chan_node;
        struct dlist voicetargets;
@@ -127,5 +129,8 @@ void Client_codec_add(client_t *client, int codec);
 void Client_codec_free(client_t *client);
 codec_t *Client_codec_iterate(client_t *client, codec_t **codec_itr);
 void Client_textmessage(client_t *client, char *text);
+bool_t Client_token_match(client_t *client, char const *str);
+void Client_token_free(client_t *client);
+void Client_token_add(client_t *client, char *token_string);
 
 #endif