mirror of
https://github.com/curl/curl.git
synced 2026-08-25 07:33:36 +03:00
pop3: Moved the per-request variables to the per-request data structure
Moved the mailbox and custom request variables from the per-connection struct pop3_conn to the new per-request struct and fixed references accordingly.
This commit is contained in:
parent
e2201dc849
commit
29a4a16db8
2 changed files with 17 additions and 17 deletions
|
|
@ -61,14 +61,14 @@ struct POP3 {
|
|||
char *user; /* User name string */
|
||||
char *passwd; /* Password string */
|
||||
curl_ftptransfer transfer;
|
||||
char *mailbox; /* Message ID */
|
||||
char *custom; /* Custom Request */
|
||||
};
|
||||
|
||||
/* pop3_conn is used for struct connection-oriented data in the connectdata
|
||||
struct */
|
||||
struct pop3_conn {
|
||||
struct pingpong pp;
|
||||
char *mailbox; /* Message ID */
|
||||
char *custom; /* Custom Request */
|
||||
size_t eob; /* Number of bytes of the EOB (End Of Body) that
|
||||
have been received so far */
|
||||
size_t strip; /* Number of bytes from the start to ignore as
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue