mirror of
https://github.com/curl/curl.git
synced 2026-08-25 19:03:33 +03:00
imap: Moved imap_logout() to be grouped with the other perform functions
This commit is contained in:
parent
b482417ac4
commit
b4c9b515aa
1 changed files with 19 additions and 19 deletions
38
lib/imap.c
38
lib/imap.c
|
|
@ -821,6 +821,25 @@ static CURLcode imap_custom(struct connectdata *conn)
|
|||
return result;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
*
|
||||
* imap_logout()
|
||||
*
|
||||
* Performs the logout action prior to sclose() being called.
|
||||
*/
|
||||
static CURLcode imap_logout(struct connectdata *conn)
|
||||
{
|
||||
CURLcode result = CURLE_OK;
|
||||
|
||||
/* Send the LOGOUT command */
|
||||
result = imap_sendf(conn, "LOGOUT");
|
||||
|
||||
if(!result)
|
||||
state(conn, IMAP_LOGOUT);
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
/* For the initial server greeting */
|
||||
static CURLcode imap_state_servergreet_resp(struct connectdata *conn,
|
||||
int imapcode,
|
||||
|
|
@ -1936,25 +1955,6 @@ static CURLcode imap_do(struct connectdata *conn, bool *done)
|
|||
return result;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
*
|
||||
* imap_logout()
|
||||
*
|
||||
* Performs the logout action prior to sclose() being called.
|
||||
*/
|
||||
static CURLcode imap_logout(struct connectdata *conn)
|
||||
{
|
||||
CURLcode result = CURLE_OK;
|
||||
|
||||
/* Send the LOGOUT command */
|
||||
result = imap_sendf(conn, "LOGOUT");
|
||||
|
||||
if(!result)
|
||||
state(conn, IMAP_LOGOUT);
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
*
|
||||
* imap_disconnect()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue