[vlc-devel] commit: Add NEWS about HTTP access supporting Digest Auth and gzip compressed content . (Do we also need to add stuff about the cookies forwarding?) ( Antoine Cellerier )

git version control git at videolan.org
Fri Apr 18 15:41:30 CEST 2008


vlc | branch: master | Antoine Cellerier <dionoea at videolan.org> | Fri Apr 18 15:41:40 2008 +0200| [94007db478a8da8d5be308e4043bf305c1d84206]

Add NEWS about HTTP access supporting Digest Auth and gzip compressed content. (Do we also need to add stuff about the cookies forwarding?)

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=94007db478a8da8d5be308e4043bf305c1d84206
---

 NEWS                  |    2 ++
 modules/access/http.c |    7 ++++---
 2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/NEWS b/NEWS
index f2dd3b3..6aaecf8 100644
--- a/NEWS
+++ b/NEWS
@@ -79,6 +79,8 @@ Input/Demuxers:
  * Experimental EyeTV access module (Mac OS X only)
    This requires the user to install a plugin to EyeTV.app
    (available as a separate download).
+ * HTTP access now supports gzip compressed data and Digest Access
+   Authentication.
 
 Decoders:
  * VP60/VP61/VP6F/VP62 support
diff --git a/modules/access/http.c b/modules/access/http.c
index 452b381..c129edb 100644
--- a/modules/access/http.c
+++ b/modules/access/http.c
@@ -1,12 +1,13 @@
 /*****************************************************************************
  * http.c: HTTP input module
  *****************************************************************************
- * Copyright (C) 2001-2005 the VideoLAN team
+ * Copyright (C) 2001-2008 the VideoLAN team
  * $Id$
  *
  * Authors: Laurent Aimar <fenrir at via.ecp.fr>
  *          Christophe Massiot <massiot at via.ecp.fr>
  *          Rémi Denis-Courmont <rem # videolan.org>
+ *          Antoine Cellerier <dionoea at videolan dot org>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -115,7 +116,7 @@ vlc_module_end();
  * Local prototypes
  *****************************************************************************/
 
-/* RFC 2617: Basic and Digest Access Authentification */
+/* RFC 2617: Basic and Digest Access Authentication */
 typedef struct http_auth_t
 {
     char *psz_realm;
@@ -1508,7 +1509,7 @@ static void cookie_append( vlc_array_t * cookies, char * cookie )
 }
 
 /*****************************************************************************
- * "RFC 2617: Basic and Digest Access Authentification" header parsing
+ * "RFC 2617: Basic and Digest Access Authentication" header parsing
  *****************************************************************************/
 static char *AuthGetParam( const char *psz_header, const char *psz_param )
 {




More information about the vlc-devel mailing list