mirror of
https://github.com/curl/curl.git
synced 2026-08-26 03:03:36 +03:00
curl_imap.h: Tidy up of comments to be more readable
This commit is contained in:
parent
8177bc262f
commit
167717b806
1 changed files with 13 additions and 13 deletions
|
|
@ -7,7 +7,7 @@
|
||||||
* | (__| |_| | _ <| |___
|
* | (__| |_| | _ <| |___
|
||||||
* \___|\___/|_| \_\_____|
|
* \___|\___/|_| \_\_____|
|
||||||
*
|
*
|
||||||
* Copyright (C) 2009 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al.
|
* Copyright (C) 2009 - 2012, 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
|
||||||
|
|
@ -45,15 +45,15 @@ typedef enum {
|
||||||
struct */
|
struct */
|
||||||
struct imap_conn {
|
struct imap_conn {
|
||||||
struct pingpong pp;
|
struct pingpong pp;
|
||||||
char *mailbox; /* what to FETCH */
|
char *mailbox; /* Message ID to fetch */
|
||||||
imapstate state; /* always use imap.c:state() to change state! */
|
imapstate state; /* Always use imap.c:state() to change state! */
|
||||||
int cmdid; /* id number/index */
|
int cmdid; /* Next command ID */
|
||||||
const char *idstr; /* pointer to a string for which to wait for as id */
|
const char *idstr; /* String based response ID to wait for */
|
||||||
bool ssldone; /* connect() over SSL? only relevant in multi mode */
|
bool ssldone; /* Is connect() over SSL done? Only relevant in
|
||||||
|
multi mode */
|
||||||
};
|
};
|
||||||
|
|
||||||
extern const struct Curl_handler Curl_handler_imap;
|
extern const struct Curl_handler Curl_handler_imap;
|
||||||
extern const struct Curl_handler Curl_handler_imaps;
|
extern const struct Curl_handler Curl_handler_imaps;
|
||||||
|
|
||||||
#endif /* HEADER_CURL_IMAP_H */
|
#endif /* HEADER_CURL_IMAP_H */
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue