2012-12-28 19:03:09 +08:00
|
|
|
#ifndef HEADER_CURL_RTSP_H
|
|
|
|
#define HEADER_CURL_RTSP_H
|
2010-01-21 21:58:30 +08:00
|
|
|
/***************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2023-01-02 20:51:48 +08:00
|
|
|
* Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
2010-01-21 21:58:30 +08:00
|
|
|
*
|
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
2020-11-04 21:02:01 +08:00
|
|
|
* are also available at https://curl.se/docs/copyright.html.
|
2010-01-21 21:58:30 +08:00
|
|
|
*
|
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: curl
|
2022-05-17 17:16:50 +08:00
|
|
|
*
|
2010-01-21 21:58:30 +08:00
|
|
|
***************************************************************************/
|
2020-12-14 21:10:33 +08:00
|
|
|
#ifdef USE_HYPER
|
2021-06-09 17:43:41 +08:00
|
|
|
#define CURL_DISABLE_RTSP 1
|
2020-12-14 21:10:33 +08:00
|
|
|
#endif
|
|
|
|
|
2010-01-21 21:58:30 +08:00
|
|
|
#ifndef CURL_DISABLE_RTSP
|
|
|
|
|
|
|
|
extern const struct Curl_handler Curl_handler_rtsp;
|
|
|
|
|
2024-03-21 19:15:59 +08:00
|
|
|
CURLcode Curl_rtsp_parseheader(struct Curl_easy *data, const char *header);
|
2011-03-24 00:27:58 +08:00
|
|
|
|
|
|
|
#else
|
|
|
|
/* disabled */
|
2011-05-05 22:53:05 +08:00
|
|
|
#define Curl_rtsp_parseheader(x,y) CURLE_NOT_BUILT_IN
|
2010-01-22 22:20:56 +08:00
|
|
|
|
|
|
|
#endif /* CURL_DISABLE_RTSP */
|
|
|
|
|
2023-10-07 21:13:09 +08:00
|
|
|
typedef enum {
|
|
|
|
RTP_PARSE_SKIP,
|
|
|
|
RTP_PARSE_CHANNEL,
|
|
|
|
RTP_PARSE_LEN,
|
|
|
|
RTP_PARSE_DATA
|
|
|
|
} rtp_parse_st;
|
2010-01-21 21:58:30 +08:00
|
|
|
/*
|
|
|
|
* RTSP Connection data
|
|
|
|
*
|
|
|
|
* Currently, only used for tracking incomplete RTP data reads
|
|
|
|
*/
|
|
|
|
struct rtsp_conn {
|
2023-04-04 20:44:25 +08:00
|
|
|
struct dynbuf buf;
|
2010-01-21 21:58:30 +08:00
|
|
|
int rtp_channel;
|
2023-10-07 21:13:09 +08:00
|
|
|
size_t rtp_len;
|
|
|
|
rtp_parse_st state;
|
|
|
|
BIT(in_header);
|
2010-01-21 21:58:30 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* RTSP unique setup
|
|
|
|
***************************************************************************/
|
|
|
|
struct RTSP {
|
|
|
|
long CSeq_sent; /* CSeq of this request */
|
|
|
|
long CSeq_recv; /* CSeq received */
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-12-28 19:03:09 +08:00
|
|
|
#endif /* HEADER_CURL_RTSP_H */
|