Added support for IMAP4 commands that may span multiple packets by calling recv(...
[dockapps/wmnotify.git] / src / pop3.h
index 6f018ce..a617f1a 100644 (file)
 #  define _SCOPE_ extern
 #endif
 
-/* POP3 responses may be up to 512 characters long, including the terminating
-   CRLF. */
-#define POP3_IN_BUF_SIZE 512
+
+#define POP3_ENDL "\r\n" /* CRLF */
 
 #define POP3_CMD_USERNAME "USER"
 #define POP3_CMD_PASSWORD "PASS"
 #define POP3_CMD_STAT     "STAT"
 #define POP3_CMD_QUIT     "QUIT"
-#define POP3_ENDL "\r\n" /* CRLF */
-
 
 #define POP3_RSP_SUCCESS "+OK"
 #define POP3_RSP_FAILURE "-ERR"