cookie.h 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. #ifndef HEADER_CURL_COOKIE_H
  2. #define HEADER_CURL_COOKIE_H
  3. /***************************************************************************
  4. * _ _ ____ _
  5. * Project ___| | | | _ \| |
  6. * / __| | | | |_) | |
  7. * | (__| |_| | _ <| |___
  8. * \___|\___/|_| \_\_____|
  9. *
  10. * Copyright (C) 1998 - 2011, 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 "setup.h"
  25. #include <curl/curl.h>
  26. struct Cookie {
  27. struct Cookie *next; /* next in the chain */
  28. char *name; /* <this> = value */
  29. char *value; /* name = <this> */
  30. char *path; /* path = <this> */
  31. char *domain; /* domain = <this> */
  32. curl_off_t expires; /* expires = <this> */
  33. char *expirestr; /* the plain text version */
  34. bool tailmatch; /* weather we do tail-matchning of the domain name */
  35. /* RFC 2109 keywords. Version=1 means 2109-compliant cookie sending */
  36. char *version; /* Version = <value> */
  37. char *maxage; /* Max-Age = <value> */
  38. bool secure; /* whether the 'secure' keyword was used */
  39. bool livecookie; /* updated from a server, not a stored file */
  40. bool httponly; /* true if the httponly directive is present */
  41. };
  42. struct CookieInfo {
  43. /* linked list of cookies we know of */
  44. struct Cookie *cookies;
  45. char *filename; /* file we read from/write to */
  46. bool running; /* state info, for cookie adding information */
  47. long numcookies; /* number of cookies in the "jar" */
  48. bool newsession; /* new session, discard session cookies on load */
  49. };
  50. /* This is the maximum line length we accept for a cookie line. RFC 2109
  51. section 6.3 says:
  52. "at least 4096 bytes per cookie (as measured by the size of the characters
  53. that comprise the cookie non-terminal in the syntax description of the
  54. Set-Cookie header)"
  55. */
  56. #define MAX_COOKIE_LINE 5000
  57. #define MAX_COOKIE_LINE_TXT "4999"
  58. /* This is the maximum length of a cookie name we deal with: */
  59. #define MAX_NAME 1024
  60. #define MAX_NAME_TXT "1023"
  61. struct SessionHandle;
  62. /*
  63. * Add a cookie to the internal list of cookies. The domain and path arguments
  64. * are only used if the header boolean is TRUE.
  65. */
  66. struct Cookie *Curl_cookie_add(struct SessionHandle *data,
  67. struct CookieInfo *, bool header, char *lineptr,
  68. const char *domain, const char *path);
  69. struct Cookie *Curl_cookie_getlist(struct CookieInfo *, const char *,
  70. const char *, bool);
  71. void Curl_cookie_freelist(struct Cookie *cookies, bool cookiestoo);
  72. void Curl_cookie_clearall(struct CookieInfo *cookies);
  73. void Curl_cookie_clearsess(struct CookieInfo *cookies);
  74. #if defined(CURL_DISABLE_HTTP) || defined(CURL_DISABLE_COOKIES)
  75. #define Curl_cookie_list(x) NULL
  76. #define Curl_cookie_loadfiles(x) Curl_nop_stmt
  77. #define Curl_cookie_init(x,y,z,w) NULL
  78. #define Curl_cookie_cleanup(x) Curl_nop_stmt
  79. #define Curl_flush_cookies(x,y) Curl_nop_stmt
  80. #else
  81. void Curl_flush_cookies(struct SessionHandle *data, int cleanup);
  82. void Curl_cookie_cleanup(struct CookieInfo *);
  83. struct CookieInfo *Curl_cookie_init(struct SessionHandle *data,
  84. const char *, struct CookieInfo *, bool);
  85. struct curl_slist *Curl_cookie_list(struct SessionHandle *data);
  86. void Curl_cookie_loadfiles(struct SessionHandle *data);
  87. #endif
  88. #endif /* HEADER_CURL_COOKIE_H */