mirror of
https://github.com/curl/curl.git
synced 2026-08-25 14:23:39 +03:00
Chris Conroy brought support for RTSP transfers, and with it comes 8(!) new
libcurl options for controlling what to get and how to receive posssibly interleaved RTP data. Initial commit.
This commit is contained in:
parent
e09718d457
commit
bc4582b68a
21 changed files with 1628 additions and 215 deletions
|
|
@ -270,6 +270,12 @@ curl_easy_strerror(CURLcode error)
|
|||
case CURLE_AGAIN:
|
||||
return "Socket not ready for send/recv";
|
||||
|
||||
case CURLE_RTSP_CSEQ_ERROR:
|
||||
return "RTSP CSeq mismatch or invalid CSeq";
|
||||
|
||||
case CURLE_RTSP_SESSION_ERROR:
|
||||
return "RTSP session error";
|
||||
|
||||
/* error codes not used by current libcurl */
|
||||
case CURLE_OBSOLETE4:
|
||||
case CURLE_OBSOLETE10:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue