dynbuf.h 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. #ifndef HEADER_CURL_DYNBUF_H
  2. #define HEADER_CURL_DYNBUF_H
  3. /***************************************************************************
  4. * _ _ ____ _
  5. * Project ___| | | | _ \| |
  6. * / __| | | | |_) | |
  7. * | (__| |_| | _ <| |___
  8. * \___|\___/|_| \_\_____|
  9. *
  10. * Copyright (C) 2020, 2021, Daniel Stenberg, <[email protected]>, 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 https://curl.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. #ifndef BUILDING_LIBCURL
  25. /* this renames the functions so that the tool code can use the same code
  26. without getting symbol collisions */
  27. #define Curl_dyn_init(a,b) curlx_dyn_init(a,b)
  28. #define Curl_dyn_add(a,b) curlx_dyn_add(a,b)
  29. #define Curl_dyn_addn(a,b,c) curlx_dyn_addn(a,b,c)
  30. #define Curl_dyn_addf curlx_dyn_addf
  31. #define Curl_dyn_vaddf curlx_dyn_vaddf
  32. #define Curl_dyn_free(a) curlx_dyn_free(a)
  33. #define Curl_dyn_ptr(a) curlx_dyn_ptr(a)
  34. #define Curl_dyn_uptr(a) curlx_dyn_uptr(a)
  35. #define Curl_dyn_len(a) curlx_dyn_len(a)
  36. #define Curl_dyn_reset(a) curlx_dyn_reset(a)
  37. #define Curl_dyn_tail(a,b) curlx_dyn_tail(a,b)
  38. #define curlx_dynbuf dynbuf /* for the struct name */
  39. #endif
  40. struct dynbuf {
  41. char *bufr; /* point to a null-terminated allocated buffer */
  42. size_t leng; /* number of bytes *EXCLUDING* the zero terminator */
  43. size_t allc; /* size of the current allocation */
  44. size_t toobig; /* size limit for the buffer */
  45. #ifdef DEBUGBUILD
  46. int init; /* detect API usage mistakes */
  47. #endif
  48. };
  49. void Curl_dyn_init(struct dynbuf *s, size_t toobig);
  50. void Curl_dyn_free(struct dynbuf *s);
  51. CURLcode Curl_dyn_addn(struct dynbuf *s, const void *mem, size_t len)
  52. WARN_UNUSED_RESULT;
  53. CURLcode Curl_dyn_add(struct dynbuf *s, const char *str)
  54. WARN_UNUSED_RESULT;
  55. CURLcode Curl_dyn_addf(struct dynbuf *s, const char *fmt, ...)
  56. WARN_UNUSED_RESULT;
  57. CURLcode Curl_dyn_vaddf(struct dynbuf *s, const char *fmt, va_list ap)
  58. WARN_UNUSED_RESULT;
  59. void Curl_dyn_reset(struct dynbuf *s);
  60. CURLcode Curl_dyn_tail(struct dynbuf *s, size_t trail);
  61. char *Curl_dyn_ptr(const struct dynbuf *s);
  62. unsigned char *Curl_dyn_uptr(const struct dynbuf *s);
  63. size_t Curl_dyn_len(const struct dynbuf *s);
  64. /* returns 0 on success, -1 on error */
  65. /* The implementation of this function exists in mprintf.c */
  66. int Curl_dyn_vprintf(struct dynbuf *dyn, const char *format, va_list ap_save);
  67. /* Dynamic buffer max sizes */
  68. #define DYN_DOH_RESPONSE 3000
  69. #define DYN_DOH_CNAME 256
  70. #define DYN_PAUSE_BUFFER (64 * 1024 * 1024)
  71. #define DYN_HAXPROXY 2048
  72. #define DYN_HTTP_REQUEST (1024*1024)
  73. #define DYN_H2_HEADERS (128*1024)
  74. #define DYN_H2_TRAILERS (128*1024)
  75. #define DYN_APRINTF 8000000
  76. #define DYN_RTSP_REQ_HEADER (64*1024)
  77. #define DYN_TRAILERS (64*1024)
  78. #define DYN_PROXY_CONNECT_HEADERS 16384
  79. #define DYN_QLOG_NAME 1024
  80. #define DYN_H1_TRAILER 4096
  81. #define DYN_PINGPPONG_CMD (64*1024)
  82. #define DYN_IMAP_CMD (64*1024)
  83. #endif