pop3.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. #ifndef HEADER_CURL_POP3_H
  2. #define HEADER_CURL_POP3_H
  3. /***************************************************************************
  4. * _ _ ____ _
  5. * Project ___| | | | _ \| |
  6. * / __| | | | |_) | |
  7. * | (__| |_| | _ <| |___
  8. * \___|\___/|_| \_\_____|
  9. *
  10. * Copyright (C) 2009 - 2013, 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. #include "pingpong.h"
  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_CAPA,
  33. POP3_STARTTLS,
  34. POP3_UPGRADETLS, /* asynchronously upgrade the connection to SSL/TLS
  35. (multi mode only) */
  36. POP3_AUTH_PLAIN,
  37. POP3_AUTH_LOGIN,
  38. POP3_AUTH_LOGIN_PASSWD,
  39. POP3_AUTH_CRAMMD5,
  40. POP3_AUTH_DIGESTMD5,
  41. POP3_AUTH_DIGESTMD5_RESP,
  42. POP3_AUTH_NTLM,
  43. POP3_AUTH_NTLM_TYPE2MSG,
  44. POP3_AUTH_FINAL,
  45. POP3_APOP,
  46. POP3_USER,
  47. POP3_PASS,
  48. POP3_COMMAND,
  49. POP3_QUIT,
  50. POP3_LAST /* never used */
  51. } pop3state;
  52. /* This POP3 struct is used in the SessionHandle. All POP3 data that is
  53. connection-oriented must be in pop3_conn to properly deal with the fact that
  54. perhaps the SessionHandle is changed between the times the connection is
  55. used. */
  56. struct POP3 {
  57. curl_pp_transfer transfer;
  58. char *id; /* Message ID */
  59. char *custom; /* Custom Request */
  60. };
  61. /* pop3_conn is used for struct connection-oriented data in the connectdata
  62. struct */
  63. struct pop3_conn {
  64. struct pingpong pp;
  65. pop3state state; /* Always use pop3.c:state() to change state! */
  66. bool ssldone; /* Is connect() over SSL done? */
  67. size_t eob; /* Number of bytes of the EOB (End Of Body) that
  68. have been received so far */
  69. size_t strip; /* Number of bytes from the start to ignore as
  70. non-body */
  71. unsigned int authtypes; /* Accepted authentication types */
  72. unsigned int authmechs; /* Accepted SASL authentication mechanisms */
  73. unsigned int preftype; /* Preferred authentication type */
  74. unsigned int prefmech; /* Preferred SASL authentication mechanism */
  75. unsigned int authused; /* SASL auth mechanism used for the connection */
  76. char *apoptimestamp; /* APOP timestamp from the server greeting */
  77. bool tls_supported; /* StartTLS capability supported by server */
  78. };
  79. extern const struct Curl_handler Curl_handler_pop3;
  80. extern const struct Curl_handler Curl_handler_pop3s;
  81. /* Authentication type flags */
  82. #define POP3_TYPE_CLEARTEXT (1 << 0)
  83. #define POP3_TYPE_APOP (1 << 1)
  84. #define POP3_TYPE_SASL (1 << 2)
  85. /* Authentication type values */
  86. #define POP3_TYPE_NONE 0
  87. #define POP3_TYPE_ANY ~0
  88. /* This is the 5-bytes End-Of-Body marker for POP3 */
  89. #define POP3_EOB "\x0d\x0a\x2e\x0d\x0a"
  90. #define POP3_EOB_LEN 5
  91. /* This function scans the body after the end-of-body and writes everything
  92. * until the end is found */
  93. CURLcode Curl_pop3_write(struct connectdata *conn, char *str, size_t nread);
  94. #endif /* HEADER_CURL_POP3_H */