mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 09:55:36 +00:00
rtsp: Add support for the Authentication-Info header.
The Authentication-Info header is defined in RFC 2617 (Digest Access Authentication).
This commit is contained in:
parent
099989ff0f
commit
41f1d9a7d9
2 changed files with 7 additions and 1 deletions
|
@ -186,6 +186,8 @@ static const gchar *rtsp_headers[] = {
|
|||
"X-StartupProfile", /* X-StartupProfile */
|
||||
"Timestamp", /* Timestamp */
|
||||
|
||||
"Authentication-Info", /* Authentication-Info */
|
||||
|
||||
NULL
|
||||
};
|
||||
|
||||
|
|
|
@ -311,8 +311,12 @@ typedef enum {
|
|||
GST_RTSP_HDR_X_STARTUPPROFILE, /* X-StartupProfile */
|
||||
|
||||
/* Since 0.10.24 */
|
||||
GST_RTSP_HDR_TIMESTAMP /* Timestamp */
|
||||
GST_RTSP_HDR_TIMESTAMP, /* Timestamp */
|
||||
|
||||
/* Since 0.10.25 */
|
||||
GST_RTSP_HDR_AUTHENTICATION_INFO, /* Authentication-Info */
|
||||
|
||||
GST_RTSP_HDR_LAST
|
||||
} GstRTSPHeaderField;
|
||||
|
||||
typedef enum {
|
||||
|
|
Loading…
Reference in a new issue