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:
Peter Kjellerstedt 2009-08-24 11:24:27 +02:00
parent 099989ff0f
commit 41f1d9a7d9
2 changed files with 7 additions and 1 deletions

View file

@ -186,6 +186,8 @@ static const gchar *rtsp_headers[] = {
"X-StartupProfile", /* X-StartupProfile */
"Timestamp", /* Timestamp */
"Authentication-Info", /* Authentication-Info */
NULL
};

View file

@ -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 {