2011-12-13 09:58:02 -05:00
|
|
|
#ifndef HEADER_CURL_POP3_H
|
|
|
|
#define HEADER_CURL_POP3_H
|
2009-12-12 16:54:01 -05:00
|
|
|
/***************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2012-03-25 06:21:59 -04:00
|
|
|
* Copyright (C) 2009 - 2012, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2009-12-12 16:54:01 -05:00
|
|
|
*
|
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
|
|
|
* are also available at http://curl.haxx.se/docs/copyright.html.
|
|
|
|
*
|
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* POP3 unique setup
|
|
|
|
***************************************************************************/
|
|
|
|
typedef enum {
|
2012-05-27 05:54:13 -04:00
|
|
|
POP3_STOP, /* do nothing state, stops the state machine */
|
|
|
|
POP3_SERVERGREET, /* waiting for the initial greeting immediately after
|
|
|
|
a connect */
|
2012-05-28 15:21:52 -04:00
|
|
|
POP3_STARTTLS,
|
2012-05-27 14:09:38 -04:00
|
|
|
POP3_AUTH,
|
2012-05-31 15:45:53 -04:00
|
|
|
POP3_AUTH_PLAIN,
|
2012-06-01 10:59:29 -04:00
|
|
|
POP3_AUTH_LOGIN,
|
|
|
|
POP3_AUTH_LOGIN_PASSWD,
|
2012-06-03 14:13:16 -04:00
|
|
|
POP3_AUTH_CRAMMD5,
|
2012-06-02 06:55:58 -04:00
|
|
|
POP3_AUTH_NTLM,
|
|
|
|
POP3_AUTH_NTLM_TYPE2MSG,
|
2012-05-31 15:45:53 -04:00
|
|
|
POP3_AUTH_FINAL,
|
2009-12-12 16:54:01 -05:00
|
|
|
POP3_USER,
|
|
|
|
POP3_PASS,
|
2012-04-02 18:24:00 -04:00
|
|
|
POP3_COMMAND,
|
2009-12-12 16:54:01 -05:00
|
|
|
POP3_QUIT,
|
2012-05-27 05:54:13 -04:00
|
|
|
POP3_LAST /* never used */
|
2009-12-12 16:54:01 -05:00
|
|
|
} pop3state;
|
|
|
|
|
|
|
|
/* pop3_conn is used for struct connection-oriented data in the connectdata
|
|
|
|
struct */
|
|
|
|
struct pop3_conn {
|
|
|
|
struct pingpong pp;
|
2012-03-31 13:46:22 -04:00
|
|
|
char *mailbox; /* message id */
|
|
|
|
char *custom; /* custom request */
|
2010-04-02 15:02:35 -04:00
|
|
|
size_t eob; /* number of bytes of the EOB (End Of Body) that has been
|
|
|
|
received thus far */
|
2011-11-29 07:43:46 -05:00
|
|
|
size_t strip; /* number of bytes from the start to ignore as non-body */
|
2012-05-27 14:09:38 -04:00
|
|
|
unsigned int authmechs; /* Accepted authentication methods */
|
2012-05-31 15:45:53 -04:00
|
|
|
unsigned int authused; /* Authentication method used for the connection */
|
2012-03-25 06:21:59 -04:00
|
|
|
pop3state state; /* always use pop3.c:state() to change state! */
|
2009-12-12 16:54:01 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
extern const struct Curl_handler Curl_handler_pop3;
|
|
|
|
extern const struct Curl_handler Curl_handler_pop3s;
|
|
|
|
|
2012-05-27 05:54:13 -04:00
|
|
|
/* This is the 5-bytes End-Of-Body marker for POP3 */
|
|
|
|
#define POP3_EOB "\x0d\x0a\x2e\x0d\x0a"
|
|
|
|
#define POP3_EOB_LEN 5
|
|
|
|
|
|
|
|
/* This function scans the body after the end-of-body and writes everything
|
|
|
|
* until the end is found */
|
|
|
|
CURLcode Curl_pop3_write(struct connectdata *conn, char *str, size_t nread);
|
2009-12-12 16:54:01 -05:00
|
|
|
|
2011-12-13 09:58:02 -05:00
|
|
|
#endif /* HEADER_CURL_POP3_H */
|