CURLOPT_INTERLEAVEFUNCTION.3 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. .\" **************************************************************************
  2. .\" * _ _ ____ _
  3. .\" * Project ___| | | | _ \| |
  4. .\" * / __| | | | |_) | |
  5. .\" * | (__| |_| | _ <| |___
  6. .\" * \___|\___/|_| \_\_____|
  7. .\" *
  8. .\" * Copyright (C) 1998 - 2021, 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. .\" **************************************************************************
  22. .\"
  23. .TH CURLOPT_INTERLEAVEFUNCTION 3 "19 Jun 2014" "libcurl 7.37.0" "curl_easy_setopt options"
  24. .SH NAME
  25. CURLOPT_INTERLEAVEFUNCTION \- callback for RTSP interleaved data
  26. .SH SYNOPSIS
  27. .nf
  28. #include <curl/curl.h>
  29. size_t interleave_callback(void *ptr, size_t size, size_t nmemb,
  30. void *userdata);
  31. CURLcode curl_easy_setopt(CURL *handle, CURLOPT_INTERLEAVEFUNCTION,
  32. interleave_callback);
  33. .SH DESCRIPTION
  34. Pass a pointer to your callback function, which should match the prototype
  35. shown above.
  36. This callback function gets called by libcurl as soon as it has received
  37. interleaved RTP data. This function gets called for each $ block and therefore
  38. contains exactly one upper-layer protocol unit (e.g. one RTP packet). Curl
  39. writes the interleaved header as well as the included data for each call. The
  40. first byte is always an ASCII dollar sign. The dollar sign is followed by a
  41. one byte channel identifier and then a 2 byte integer length in network byte
  42. order. See \fIRFC2326 Section 10.12\fP for more information on how RTP
  43. interleaving behaves. If unset or set to NULL, curl will use the default write
  44. function.
  45. Interleaved RTP poses some challenges for the client application. Since the
  46. stream data is sharing the RTSP control connection, it is critical to service
  47. the RTP in a timely fashion. If the RTP data is not handled quickly,
  48. subsequent response processing may become unreasonably delayed and the
  49. connection may close. The application may use \fICURL_RTSPREQ_RECEIVE\fP to
  50. service RTP data when no requests are desired. If the application makes a
  51. request, (e.g. \fICURL_RTSPREQ_PAUSE\fP) then the response handler will
  52. process any pending RTP data before marking the request as finished.
  53. The \fICURLOPT_INTERLEAVEDATA(3)\fP is passed in the \fIuserdata\fP argument in
  54. the callback.
  55. .SH DEFAULT
  56. NULL, the interleave data is then passed to the regular write function:
  57. \fICURLOPT_WRITEFUNCTION(3)\fP.
  58. .SH PROTOCOLS
  59. RTSP
  60. .SH EXAMPLE
  61. .nf
  62. static size_t rtp_write(void *ptr, size_t size, size_t nmemb, void *user)
  63. {
  64. struct local *l = (struct local *)user;
  65. /* take care of the packet in 'ptr', then return... */
  66. return size * nmemb;
  67. }
  68. {
  69. struct local rtp_data;
  70. curl_easy_setopt(curl, CURLOPT_INTERLEAVEFUNCTION, rtp_write);
  71. curl_easy_setopt(curl, CURLOPT_INTERLEAVEDATA, &rtp_data);
  72. }
  73. .fi
  74. .SH AVAILABILITY
  75. Added in 7.20.0
  76. .SH RETURN VALUE
  77. Returns CURLE_OK if the option is supported, and CURLE_UNKNOWN_OPTION if not.
  78. .SH "SEE ALSO"
  79. .BR CURLOPT_INTERLEAVEDATA "(3), " CURLOPT_RTSP_REQUEST "(3), "