CURLOPT_INTERLEAVEFUNCTION.3 4.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. .\" **************************************************************************
  2. .\" * _ _ ____ _
  3. .\" * Project ___| | | | _ \| |
  4. .\" * / __| | | | |_) | |
  5. .\" * | (__| |_| | _ <| |___
  6. .\" * \___|\___/|_| \_\_____|
  7. .\" *
  8. .\" * Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
  9. .\" *
  10. .\" * This software is licensed as described in the file COPYING, which
  11. .\" * you should have received as part of this distribution. The terms
  12. .\" * are also available at https://curl.se/docs/copyright.html.
  13. .\" *
  14. .\" * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. .\" * copies of the Software, and permit persons to whom the Software is
  16. .\" * furnished to do so, under the terms of the COPYING file.
  17. .\" *
  18. .\" * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. .\" * KIND, either express or implied.
  20. .\" *
  21. .\" * SPDX-License-Identifier: curl
  22. .\" *
  23. .\" **************************************************************************
  24. .\"
  25. .TH CURLOPT_INTERLEAVEFUNCTION 3 "January 02, 2023" "libcurl 7.88.1" "curl_easy_setopt options"
  26. .SH NAME
  27. CURLOPT_INTERLEAVEFUNCTION \- callback for RTSP interleaved data
  28. .SH SYNOPSIS
  29. .nf
  30. #include <curl/curl.h>
  31. size_t interleave_callback(void *ptr, size_t size, size_t nmemb,
  32. void *userdata);
  33. CURLcode curl_easy_setopt(CURL *handle, CURLOPT_INTERLEAVEFUNCTION,
  34. interleave_callback);
  35. .SH DESCRIPTION
  36. Pass a pointer to your callback function, which should match the prototype
  37. shown above.
  38. This callback function gets called by libcurl as soon as it has received
  39. interleaved RTP data. This function gets called for each $ block and therefore
  40. contains exactly one upper-layer protocol unit (e.g. one RTP packet). Curl
  41. writes the interleaved header as well as the included data for each call. The
  42. first byte is always an ASCII dollar sign. The dollar sign is followed by a
  43. one byte channel identifier and then a 2 byte integer length in network byte
  44. order. See \fIRFC2326 Section 10.12\fP for more information on how RTP
  45. interleaving behaves. If unset or set to NULL, curl will use the default write
  46. function.
  47. Interleaved RTP poses some challenges for the client application. Since the
  48. stream data is sharing the RTSP control connection, it is critical to service
  49. the RTP in a timely fashion. If the RTP data is not handled quickly,
  50. subsequent response processing may become unreasonably delayed and the
  51. connection may close. The application may use \fICURL_RTSPREQ_RECEIVE\fP to
  52. service RTP data when no requests are desired. If the application makes a
  53. request, (e.g. \fICURL_RTSPREQ_PAUSE\fP) then the response handler will
  54. process any pending RTP data before marking the request as finished.
  55. The \fICURLOPT_INTERLEAVEDATA(3)\fP is passed in the \fIuserdata\fP argument in
  56. the callback.
  57. Your callback should return the number of bytes actually taken care of. If
  58. that amount differs from the amount passed to your callback function, it will
  59. signal an error condition to the library. This will cause the transfer to get
  60. aborted and the libcurl function used will return \fICURLE_WRITE_ERROR\fP.
  61. You can also abort the transfer by returning CURL_WRITEFUNC_ERROR. (7.87.0)
  62. .SH DEFAULT
  63. NULL, the interleave data is then passed to the regular write function:
  64. \fICURLOPT_WRITEFUNCTION(3)\fP.
  65. .SH PROTOCOLS
  66. RTSP
  67. .SH EXAMPLE
  68. .nf
  69. static size_t rtp_write(void *ptr, size_t size, size_t nmemb, void *user)
  70. {
  71. struct local *l = (struct local *)user;
  72. /* take care of the packet in 'ptr', then return... */
  73. return size * nmemb;
  74. }
  75. {
  76. struct local rtp_data;
  77. curl_easy_setopt(curl, CURLOPT_INTERLEAVEFUNCTION, rtp_write);
  78. curl_easy_setopt(curl, CURLOPT_INTERLEAVEDATA, &rtp_data);
  79. }
  80. .fi
  81. .SH AVAILABILITY
  82. Added in 7.20.0
  83. .SH RETURN VALUE
  84. Returns CURLE_OK if the option is supported, and CURLE_UNKNOWN_OPTION if not.
  85. .SH "SEE ALSO"
  86. .BR CURLOPT_INTERLEAVEDATA "(3), " CURLOPT_RTSP_REQUEST "(3), "