pop3: Post authentication code tidy up
[platform/upstream/curl.git] / lib / pop3.h
1 #ifndef HEADER_CURL_POP3_H
2 #define HEADER_CURL_POP3_H
3 /***************************************************************************
4  *                                  _   _ ____  _
5  *  Project                     ___| | | |  _ \| |
6  *                             / __| | | | |_) | |
7  *                            | (__| |_| |  _ <| |___
8  *                             \___|\___/|_| \_\_____|
9  *
10  * Copyright (C) 2009 - 2012, Daniel Stenberg, <daniel@haxx.se>, et al.
11  *
12  * This software is licensed as described in the file COPYING, which
13  * you should have received as part of this distribution. The terms
14  * are also available at http://curl.haxx.se/docs/copyright.html.
15  *
16  * You may opt to use, copy, modify, merge, publish, distribute and/or sell
17  * copies of the Software, and permit persons to whom the Software is
18  * furnished to do so, under the terms of the COPYING file.
19  *
20  * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
21  * KIND, either express or implied.
22  *
23  ***************************************************************************/
24
25 /****************************************************************************
26  * POP3 unique setup
27  ***************************************************************************/
28 typedef enum {
29   POP3_STOP,         /* do nothing state, stops the state machine */
30   POP3_SERVERGREET,  /* waiting for the initial greeting immediately after
31                         a connect */
32   POP3_STARTTLS,
33   POP3_CAPA,
34   POP3_AUTH_PLAIN,
35   POP3_AUTH_LOGIN,
36   POP3_AUTH_LOGIN_PASSWD,
37   POP3_AUTH_CRAMMD5,
38   POP3_AUTH_DIGESTMD5,
39   POP3_AUTH_DIGESTMD5_RESP,
40   POP3_AUTH_NTLM,
41   POP3_AUTH_NTLM_TYPE2MSG,
42   POP3_AUTH,
43   POP3_USER,
44   POP3_PASS,
45   POP3_COMMAND,
46   POP3_QUIT,
47   POP3_LAST          /* never used */
48 } pop3state;
49
50 /* pop3_conn is used for struct connection-oriented data in the connectdata
51    struct */
52 struct pop3_conn {
53   struct pingpong pp;
54   char *mailbox;          /* Message ID */
55   char *custom;           /* Custom Request */
56   size_t eob;             /* Number of bytes of the EOB (End Of Body) that
57                              have been received so far */
58   size_t strip;           /* Number of bytes from the start to ignore as
59                              non-body */
60   unsigned int authmechs; /* Accepted authentication methods */
61   unsigned int authused;  /* Authentication method used for the connection */
62   pop3state state;        /* Always use pop3.c:state() to change state! */
63 };
64
65 extern const struct Curl_handler Curl_handler_pop3;
66 extern const struct Curl_handler Curl_handler_pop3s;
67
68 /* This is the 5-bytes End-Of-Body marker for POP3 */
69 #define POP3_EOB "\x0d\x0a\x2e\x0d\x0a"
70 #define POP3_EOB_LEN 5
71
72 /* This function scans the body after the end-of-body and writes everything
73  * until the end is found */
74 CURLcode Curl_pop3_write(struct connectdata *conn, char *str, size_t nread);
75
76 #endif /* HEADER_CURL_POP3_H */