rtsp.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. #ifndef HEADER_CURL_RTSP_H
  2. #define HEADER_CURL_RTSP_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. #ifndef CURL_DISABLE_RTSP
  27. extern const struct Curl_handler Curl_handler_rtsp;
  28. CURLcode Curl_rtsp_parseheader(struct Curl_easy *data, const char *header);
  29. #else
  30. /* disabled */
  31. #define Curl_rtsp_parseheader(x,y) CURLE_NOT_BUILT_IN
  32. #endif /* CURL_DISABLE_RTSP */
  33. typedef enum {
  34. RTP_PARSE_SKIP,
  35. RTP_PARSE_CHANNEL,
  36. RTP_PARSE_LEN,
  37. RTP_PARSE_DATA
  38. } rtp_parse_st;
  39. /*
  40. * RTSP Connection data
  41. *
  42. * Currently, only used for tracking incomplete RTP data reads
  43. */
  44. struct rtsp_conn {
  45. struct dynbuf buf;
  46. int rtp_channel;
  47. size_t rtp_len;
  48. rtp_parse_st state;
  49. BIT(in_header);
  50. };
  51. /****************************************************************************
  52. * RTSP unique setup
  53. ***************************************************************************/
  54. struct RTSP {
  55. long CSeq_sent; /* CSeq of this request */
  56. long CSeq_recv; /* CSeq received */
  57. };
  58. #endif /* HEADER_CURL_RTSP_H */