CURLOPT_INTERLEAVEFUNCTION.3 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. .\" **************************************************************************
  2. .\" * _ _ ____ _
  3. .\" * Project ___| | | | _ \| |
  4. .\" * / __| | | | |_) | |
  5. .\" * | (__| |_| | _ <| |___
  6. .\" * \___|\___/|_| \_\_____|
  7. .\" *
  8. .\" * Copyright (C) 1998 - 2014, 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 http://curl.haxx.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 function 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. .SH DEFAULT
  54. NULL
  55. .SH PROTOCOLS
  56. RTSP
  57. .SH EXAMPLE
  58. TODO
  59. .SH AVAILABILITY
  60. Added in 7.20.0
  61. .SH RETURN VALUE
  62. Returns CURLE_OK if the option is supported, and CURLE_UNKNOWN_OPTION if not.
  63. .SH "SEE ALSO"
  64. .BR CURLOPT_INTERLEAVEFUNCTION "(3), " CURLOPT_RTSP_REQUEST "(3), "