Switch over to more modern unix sharedmemory API (requested by fatbob)
[umurmur.git] / src / client.h
index 66470de3fb2177f4dea9558b79e36e20b1003d25..9f17ddf3d822ec32d708a5523ec62eee69d892ea 100644 (file)
 
 #define IS_AUTH(_a_) ((_a_)->authenticated)
 
-typedef struct {
+typedef struct {   /* You can add new lines to this struct, any reordering of some of the lines will break the sharedmemory API */
        int tcpfd;
        SSL_handle_t *ssl;
        bool_t SSLready;
        bool_t shutdown_wait;
        cryptState_t cryptState;
        bool_t readBlockedOnWrite, writeBlockedOnRead;
-
        struct sockaddr_storage remote_tcp;
        struct sockaddr_storage remote_udp;
-  char addressString[INET6_ADDRSTRLEN];
        uint8_t rxbuf[BUFSIZE], txbuf[BUFSIZE];
        uint32_t rxcount, msgsize, drainleft, txcount, txsize;
        int sessionId;
@@ -121,7 +119,7 @@ int Client_count(void);
 void Client_close(client_t *client);
 client_t *Client_iterate(client_t **client);
 int Client_send_message_except(client_t *client, message_t *msg);
-int Client_read_udp(void);
+int Client_read_udp(int udpsock);
 void Client_disconnect_all();
 int Client_voiceMsg(client_t *client, uint8_t *data, int len);
 void recheckCodecVersions(client_t *connectingClient);