diff options
author | Steve Holme <steve_holme@hotmail.com> | 2013-03-06 19:58:34 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2013-03-06 19:58:34 +0000 |
commit | 24ffceed81d120b1942e39938e48a73c5fda6848 (patch) | |
tree | c844b0c63e4cc9fe7eb4f74ee287bcd833efc993 /lib | |
parent | acfce19de1eac7597c8d2cc979b4044f34ecc3fb (diff) |
imap: Removed the custom request response function
Removed imap_state_custom_resp() as imap_state_list_resp() provides the
same functionality.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/imap.c | 38 |
1 files changed, 1 insertions, 37 deletions
diff --git a/lib/imap.c b/lib/imap.c index c2f065acb..90a2eb328 100644 --- a/lib/imap.c +++ b/lib/imap.c @@ -1548,39 +1548,6 @@ static CURLcode imap_state_append_final_resp(struct connectdata *conn, return result; } -/* For custom request responses */ -static CURLcode imap_state_custom_resp(struct connectdata *conn, - int imapcode, - imapstate instate) -{ - CURLcode result = CURLE_OK; - char *line = conn->data->state.buffer; - size_t len = strlen(line); - - (void)instate; /* No use for this yet */ - - if(imapcode == '*') { - /* The client which asked for this custom command should know best - how to cope with the result, just send it as body. - Add back the LF character temporarily while saving. */ - line[len] = '\n'; - result = Curl_client_write(conn, CLIENTWRITE_BODY, line, len + 1); - line[len] = '\0'; - } - else { - /* Final response. Stop and return the final status. */ - if(imapcode != 'O') - result = CURLE_QUOTE_ERROR; /* TODO: Fix error code */ - else - result = CURLE_OK; - - /* End of DO phase */ - state(conn, IMAP_STOP); - } - - return result; -} - static CURLcode imap_statemach_act(struct connectdata *conn) { CURLcode result = CURLE_OK; @@ -1672,6 +1639,7 @@ static CURLcode imap_statemach_act(struct connectdata *conn) break; case IMAP_LIST: + case IMAP_CUSTOM: result = imap_state_list_resp(conn, imapcode, imapc->state); break; @@ -1695,10 +1663,6 @@ static CURLcode imap_statemach_act(struct connectdata *conn) result = imap_state_append_final_resp(conn, imapcode, imapc->state); break; - case IMAP_CUSTOM: - result = imap_state_custom_resp(conn, imapcode, imapc->state); - break; - case IMAP_LOGOUT: /* fallthrough, just stop! */ default: |