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 ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2013-01-08 06:31:48 -05:00
|
|
|
* Copyright (C) 2009 - 2013, 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.
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
|
|
|
|
2013-02-23 11:06:54 -05:00
|
|
|
#include "pingpong.h"
|
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
/****************************************************************************
|
|
|
|
* 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 */
|
2013-02-10 16:18:30 -05:00
|
|
|
POP3_CAPA,
|
2012-05-28 15:21:52 -04:00
|
|
|
POP3_STARTTLS,
|
2013-01-08 06:31:48 -05:00
|
|
|
POP3_UPGRADETLS, /* asynchronously upgrade the connection to SSL/TLS
|
|
|
|
(multi mode only) */
|
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-04 16:50:16 -04:00
|
|
|
POP3_AUTH_DIGESTMD5,
|
|
|
|
POP3_AUTH_DIGESTMD5_RESP,
|
2012-06-02 06:55:58 -04:00
|
|
|
POP3_AUTH_NTLM,
|
|
|
|
POP3_AUTH_NTLM_TYPE2MSG,
|
2013-09-20 16:56:34 -04:00
|
|
|
POP3_AUTH_XOAUTH2,
|
2013-10-27 05:10:38 -04:00
|
|
|
POP3_AUTH_CANCEL,
|
2013-02-27 16:20:11 -05:00
|
|
|
POP3_AUTH_FINAL,
|
2012-06-09 08:49:37 -04:00
|
|
|
POP3_APOP,
|
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;
|
|
|
|
|
2013-02-23 11:06:54 -05: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-23 12:09:24 -05:00
|
|
|
curl_pp_transfer transfer;
|
2013-02-23 16:43:59 -05:00
|
|
|
char *id; /* Message ID */
|
2013-02-23 11:15:38 -05:00
|
|
|
char *custom; /* Custom Request */
|
2013-02-23 11:06:54 -05:00
|
|
|
};
|
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
/* pop3_conn is used for struct connection-oriented data in the connectdata
|
|
|
|
struct */
|
|
|
|
struct pop3_conn {
|
|
|
|
struct pingpong pp;
|
2013-02-26 18:15:16 -05:00
|
|
|
pop3state state; /* Always use pop3.c:state() to change state! */
|
|
|
|
bool ssldone; /* Is connect() over SSL done? */
|
2012-06-04 17:15:51 -04: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 */
|
2013-04-13 11:11:55 -04:00
|
|
|
unsigned int authtypes; /* Accepted authentication types */
|
2012-06-08 14:52:28 -04:00
|
|
|
unsigned int authmechs; /* Accepted SASL authentication mechanisms */
|
2013-04-13 11:09:28 -04:00
|
|
|
unsigned int preftype; /* Preferred authentication type */
|
|
|
|
unsigned int prefmech; /* Preferred SASL authentication mechanism */
|
2012-06-09 06:48:44 -04:00
|
|
|
unsigned int authused; /* SASL auth mechanism used for the connection */
|
2012-06-09 08:49:37 -04:00
|
|
|
char *apoptimestamp; /* APOP timestamp from the server greeting */
|
2013-02-10 07:16:27 -05:00
|
|
|
bool tls_supported; /* StartTLS capability supported by server */
|
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-06-09 06:48:44 -04:00
|
|
|
/* Authentication type flags */
|
2013-04-13 11:14:01 -04:00
|
|
|
#define POP3_TYPE_CLEARTEXT (1 << 0)
|
|
|
|
#define POP3_TYPE_APOP (1 << 1)
|
|
|
|
#define POP3_TYPE_SASL (1 << 2)
|
2012-06-09 06:48:44 -04:00
|
|
|
|
2013-04-13 11:09:28 -04:00
|
|
|
/* Authentication type values */
|
|
|
|
#define POP3_TYPE_NONE 0
|
2013-12-03 18:56:39 -05:00
|
|
|
#define POP3_TYPE_ANY ~0U
|
2013-04-13 11:09:28 -04:00
|
|
|
|
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 */
|