1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

imap: Introduced the SEARCH state

This commit is contained in:
Steve Holme 2014-04-18 15:43:04 +01:00
parent 2c6b41e98a
commit f804378d16
2 changed files with 3 additions and 1 deletions

View File

@ -439,6 +439,7 @@ static void state(struct connectdata *conn, imapstate newstate)
"FETCH_FINAL", "FETCH_FINAL",
"APPEND", "APPEND",
"APPEND_FINAL", "APPEND_FINAL",
"SEARCH",
"LOGOUT", "LOGOUT",
/* LAST */ /* LAST */
}; };

View File

@ -7,7 +7,7 @@
* | (__| |_| | _ <| |___ * | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____| * \___|\___/|_| \_\_____|
* *
* Copyright (C) 2009 - 2013, Daniel Stenberg, <daniel@haxx.se>, et al. * Copyright (C) 2009 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al.
* *
* This software is licensed as described in the file COPYING, which * This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms * you should have received as part of this distribution. The terms
@ -53,6 +53,7 @@ typedef enum {
IMAP_FETCH_FINAL, IMAP_FETCH_FINAL,
IMAP_APPEND, IMAP_APPEND,
IMAP_APPEND_FINAL, IMAP_APPEND_FINAL,
IMAP_SEARCH,
IMAP_LOGOUT, IMAP_LOGOUT,
IMAP_LAST /* never used */ IMAP_LAST /* never used */
} imapstate; } imapstate;