Added support for IMAP4 commands that may span multiple packets by calling recv(...
[dockapps/wmnotify.git] / src / network.c
index 2520000..caa1c28 100644 (file)
 #define RECV_FLAGS 0
 
 
+/* Common buffers for IMAP4 and POP3. */
+char tx_buffer[WMNOTIFY_BUFSIZE + 1];
+char rx_buffer[WMNOTIFY_BUFSIZE + 1];
+
+
 int
 SocketOpen( char *server_name, int port )
 {