2011-12-13 22:58:02 +08:00
|
|
|
#ifndef HEADER_CURL_POP3_H
|
|
|
|
#define HEADER_CURL_POP3_H
|
2009-12-13 05:54:01 +08:00
|
|
|
/***************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2015-01-20 22:27:25 +08:00
|
|
|
* Copyright (C) 2009 - 2015, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2009-12-13 05:54:01 +08: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.
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
|
|
|
|
2013-02-24 00:06:54 +08:00
|
|
|
#include "pingpong.h"
|
2015-01-20 21:14:26 +08:00
|
|
|
#include "curl_sasl.h"
|
2013-02-24 00:06:54 +08:00
|
|
|
|
2009-12-13 05:54:01 +08:00
|
|
|
/****************************************************************************
|
|
|
|
* POP3 unique setup
|
|
|
|
***************************************************************************/
|
|
|
|
typedef enum {
|
2012-05-27 17:54:13 +08:00
|
|
|
POP3_STOP, /* do nothing state, stops the state machine */
|
|
|
|
POP3_SERVERGREET, /* waiting for the initial greeting immediately after
|
|
|
|
a connect */
|
2013-02-11 05:18:30 +08:00
|
|
|
POP3_CAPA,
|
2012-05-29 03:21:52 +08:00
|
|
|
POP3_STARTTLS,
|
2013-01-08 19:31:48 +08:00
|
|
|
POP3_UPGRADETLS, /* asynchronously upgrade the connection to SSL/TLS
|
|
|
|
(multi mode only) */
|
2012-06-01 03:45:53 +08:00
|
|
|
POP3_AUTH_PLAIN,
|
2012-06-01 22:59:29 +08:00
|
|
|
POP3_AUTH_LOGIN,
|
|
|
|
POP3_AUTH_LOGIN_PASSWD,
|
2012-06-04 02:13:16 +08:00
|
|
|
POP3_AUTH_CRAMMD5,
|
2012-06-05 04:50:16 +08:00
|
|
|
POP3_AUTH_DIGESTMD5,
|
|
|
|
POP3_AUTH_DIGESTMD5_RESP,
|
2012-06-02 18:55:58 +08:00
|
|
|
POP3_AUTH_NTLM,
|
|
|
|
POP3_AUTH_NTLM_TYPE2MSG,
|
2014-08-10 06:38:08 +08:00
|
|
|
POP3_AUTH_GSSAPI,
|
|
|
|
POP3_AUTH_GSSAPI_TOKEN,
|
|
|
|
POP3_AUTH_GSSAPI_NO_DATA,
|
2013-09-21 04:56:34 +08:00
|
|
|
POP3_AUTH_XOAUTH2,
|
2013-10-27 17:10:38 +08:00
|
|
|
POP3_AUTH_CANCEL,
|
2013-02-28 05:20:11 +08:00
|
|
|
POP3_AUTH_FINAL,
|
2012-06-09 20:49:37 +08:00
|
|
|
POP3_APOP,
|
2009-12-13 05:54:01 +08:00
|
|
|
POP3_USER,
|
|
|
|
POP3_PASS,
|
2012-04-03 06:24:00 +08:00
|
|
|
POP3_COMMAND,
|
2009-12-13 05:54:01 +08:00
|
|
|
POP3_QUIT,
|
2012-05-27 17:54:13 +08:00
|
|
|
POP3_LAST /* never used */
|
2009-12-13 05:54:01 +08:00
|
|
|
} pop3state;
|
|
|
|
|
2013-02-24 00:06:54 +08:00
|
|
|
/* This POP3 struct is used in the SessionHandle. All POP3 data that is
|
|
|
|
connection-oriented must be in pop3_conn to properly deal with the fact that
|
|
|
|
perhaps the SessionHandle is changed between the times the connection is
|
|
|
|
used. */
|
|
|
|
struct POP3 {
|
2013-02-24 01:09:24 +08:00
|
|
|
curl_pp_transfer transfer;
|
2013-02-24 05:43:59 +08:00
|
|
|
char *id; /* Message ID */
|
2013-02-24 00:15:38 +08:00
|
|
|
char *custom; /* Custom Request */
|
2013-02-24 00:06:54 +08:00
|
|
|
};
|
|
|
|
|
2009-12-13 05:54:01 +08:00
|
|
|
/* pop3_conn is used for struct connection-oriented data in the connectdata
|
|
|
|
struct */
|
|
|
|
struct pop3_conn {
|
|
|
|
struct pingpong pp;
|
2013-02-27 07:15:16 +08:00
|
|
|
pop3state state; /* Always use pop3.c:state() to change state! */
|
|
|
|
bool ssldone; /* Is connect() over SSL done? */
|
2012-06-05 05:15:51 +08:00
|
|
|
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
|
|
|
|
non-body */
|
2015-01-20 21:14:26 +08:00
|
|
|
struct SASL sasl; /* SASL-related storage */
|
2013-04-13 23:11:55 +08:00
|
|
|
unsigned int authtypes; /* Accepted authentication types */
|
2013-04-13 23:09:28 +08:00
|
|
|
unsigned int preftype; /* Preferred authentication type */
|
2012-06-09 20:49:37 +08:00
|
|
|
char *apoptimestamp; /* APOP timestamp from the server greeting */
|
2013-02-10 20:16:27 +08:00
|
|
|
bool tls_supported; /* StartTLS capability supported by server */
|
2009-12-13 05:54:01 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
extern const struct Curl_handler Curl_handler_pop3;
|
|
|
|
extern const struct Curl_handler Curl_handler_pop3s;
|
|
|
|
|
2012-06-09 18:48:44 +08:00
|
|
|
/* Authentication type flags */
|
2013-04-13 23:14:01 +08:00
|
|
|
#define POP3_TYPE_CLEARTEXT (1 << 0)
|
|
|
|
#define POP3_TYPE_APOP (1 << 1)
|
|
|
|
#define POP3_TYPE_SASL (1 << 2)
|
2012-06-09 18:48:44 +08:00
|
|
|
|
2013-04-13 23:09:28 +08:00
|
|
|
/* Authentication type values */
|
|
|
|
#define POP3_TYPE_NONE 0
|
2013-12-04 07:56:39 +08:00
|
|
|
#define POP3_TYPE_ANY ~0U
|
2013-04-13 23:09:28 +08:00
|
|
|
|
2012-05-27 17:54:13 +08: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-13 05:54:01 +08:00
|
|
|
|
2011-12-13 22:58:02 +08:00
|
|
|
#endif /* HEADER_CURL_POP3_H */
|