pop3.h 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. #ifndef __POP3_H
  2. #define __POP3_H
  3. /***************************************************************************
  4. * _ _ ____ _
  5. * Project ___| | | | _ \| |
  6. * / __| | | | |_) | |
  7. * | (__| |_| | _ <| |___
  8. * \___|\___/|_| \_\_____|
  9. *
  10. * Copyright (C) 2009, 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. * POP3 unique setup
  26. ***************************************************************************/
  27. typedef enum {
  28. POP3_STOP, /* do nothing state, stops the state machine */
  29. POP3_SERVERGREET, /* waiting for the initial greeting immediately after
  30. a connect */
  31. POP3_USER,
  32. POP3_PASS,
  33. POP3_STARTTLS,
  34. POP3_LIST,
  35. POP3_LIST_SINGLE,
  36. POP3_RETR,
  37. POP3_QUIT,
  38. POP3_LAST /* never used */
  39. } pop3state;
  40. /* pop3_conn is used for struct connection-oriented data in the connectdata
  41. struct */
  42. struct pop3_conn {
  43. struct pingpong pp;
  44. char *mailbox; /* what to RETR */
  45. size_t eob; /* number of bytes of the EOB (End Of Body) that has been
  46. received thus far */
  47. pop3state state; /* always use pop3.c:state() to change state! */
  48. };
  49. extern const struct Curl_handler Curl_handler_pop3;
  50. extern const struct Curl_handler Curl_handler_pop3s;
  51. /*
  52. * This function scans the body after the end-of-body and writes everything
  53. * until the end is found.
  54. */
  55. CURLcode Curl_pop3_write(struct connectdata *conn,
  56. char *str,
  57. size_t nread);
  58. #endif /* __POP3_H */