transfer.h 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. #ifndef HEADER_CURL_TRANSFER_H
  2. #define HEADER_CURL_TRANSFER_H
  3. /***************************************************************************
  4. * _ _ ____ _
  5. * Project ___| | | | _ \| |
  6. * / __| | | | |_) | |
  7. * | (__| |_| | _ <| |___
  8. * \___|\___/|_| \_\_____|
  9. *
  10. * Copyright (C) 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 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. * SPDX-License-Identifier: curl
  24. *
  25. ***************************************************************************/
  26. #define Curl_headersep(x) ((((x)==':') || ((x)==';')))
  27. char *Curl_checkheaders(const struct Curl_easy *data,
  28. const char *thisheader,
  29. const size_t thislen);
  30. void Curl_init_CONNECT(struct Curl_easy *data);
  31. CURLcode Curl_pretransfer(struct Curl_easy *data);
  32. typedef enum {
  33. FOLLOW_NONE, /* not used within the function, just a placeholder to
  34. allow initing to this */
  35. FOLLOW_FAKE, /* only records stuff, not actually following */
  36. FOLLOW_RETRY, /* set if this is a request retry as opposed to a real
  37. redirect following */
  38. FOLLOW_REDIR /* a full true redirect */
  39. } followtype;
  40. CURLcode Curl_follow(struct Curl_easy *data, char *newurl,
  41. followtype type);
  42. CURLcode Curl_sendrecv(struct Curl_easy *data, struct curltime *nowp);
  43. int Curl_single_getsock(struct Curl_easy *data,
  44. struct connectdata *conn, curl_socket_t *socks);
  45. CURLcode Curl_retry_request(struct Curl_easy *data, char **url);
  46. bool Curl_meets_timecondition(struct Curl_easy *data, time_t timeofdoc);
  47. /**
  48. * Write the transfer raw response bytes, as received from the connection.
  49. * Will handle all passed bytes or return an error. By default, this will
  50. * write the bytes as BODY to the client. Protocols may provide a
  51. * "write_resp" callback in their handler to add specific treatment. E.g.
  52. * HTTP parses response headers and passes them differently to the client.
  53. * @param data the transfer
  54. * @param buf the raw response bytes
  55. * @param blen the amount of bytes in `buf`
  56. * @param is_eos TRUE iff the connection indicates this to be the last
  57. * bytes of the response
  58. */
  59. CURLcode Curl_xfer_write_resp(struct Curl_easy *data,
  60. const char *buf, size_t blen,
  61. bool is_eos);
  62. /**
  63. * Write a single "header" line from a server response.
  64. * @param hd0 the 0-terminated, single header line
  65. * @param hdlen the length of the header line
  66. * @param is_eos TRUE iff this is the end of the response
  67. */
  68. CURLcode Curl_xfer_write_resp_hd(struct Curl_easy *data,
  69. const char *hd0, size_t hdlen, bool is_eos);
  70. #define CURL_XFER_NOP (0)
  71. #define CURL_XFER_RECV (1<<(0))
  72. #define CURL_XFER_SEND (1<<(1))
  73. #define CURL_XFER_SENDRECV (CURL_XFER_RECV|CURL_XFER_SEND)
  74. /**
  75. * The transfer is neither receiving nor sending now.
  76. */
  77. void Curl_xfer_setup_nop(struct Curl_easy *data);
  78. /**
  79. * The transfer will use socket 1 to send/recv. `recv_size` is
  80. * the amount to receive or -1 if unknown. `getheader` indicates
  81. * response header processing is expected.
  82. */
  83. void Curl_xfer_setup1(struct Curl_easy *data,
  84. int send_recv,
  85. curl_off_t recv_size,
  86. bool getheader);
  87. /**
  88. * The transfer will use socket 2 to send/recv. `recv_size` is
  89. * the amount to receive or -1 if unknown. With `shutdown` being
  90. * set, the transfer is only allowed to either send OR receive
  91. * and the socket 2 connection will be shutdown at the end of
  92. * the transfer. An unclean shutdown will fail the transfer
  93. * unless `shutdown_err_ignore` is TRUE.
  94. */
  95. void Curl_xfer_setup2(struct Curl_easy *data,
  96. int send_recv,
  97. curl_off_t recv_size,
  98. bool shutdown, bool shutdown_err_ignore);
  99. /**
  100. * Multi has set transfer to DONE. Last chance to trigger
  101. * missing response things like writing an EOS to the client.
  102. */
  103. CURLcode Curl_xfer_write_done(struct Curl_easy *data, bool premature);
  104. /**
  105. * Return TRUE iff transfer has pending data to send. Checks involved
  106. * connection filters.
  107. */
  108. bool Curl_xfer_needs_flush(struct Curl_easy *data);
  109. /**
  110. * Flush any pending send data on the transfer connection.
  111. */
  112. CURLcode Curl_xfer_flush(struct Curl_easy *data);
  113. /**
  114. * Send data on the socket/connection filter designated
  115. * for transfer's outgoing data.
  116. * Will return CURLE_OK on blocking with (*pnwritten == 0).
  117. */
  118. CURLcode Curl_xfer_send(struct Curl_easy *data,
  119. const void *buf, size_t blen, bool eos,
  120. size_t *pnwritten);
  121. /**
  122. * Receive data on the socket/connection filter designated
  123. * for transfer's incoming data.
  124. * Will return CURLE_AGAIN on blocking with (*pnrcvd == 0).
  125. */
  126. CURLcode Curl_xfer_recv(struct Curl_easy *data,
  127. char *buf, size_t blen,
  128. ssize_t *pnrcvd);
  129. CURLcode Curl_xfer_send_close(struct Curl_easy *data);
  130. CURLcode Curl_xfer_send_shutdown(struct Curl_easy *data, bool *done);
  131. /**
  132. * Return TRUE iff the transfer is not done, but further progress
  133. * is blocked. For example when it is only receiving and its writer
  134. * is PAUSED.
  135. */
  136. bool Curl_xfer_is_blocked(struct Curl_easy *data);
  137. #endif /* HEADER_CURL_TRANSFER_H */