]> git.sesse.net Git - vlc/commitdiff
Add NEWS about HTTP access supporting Digest Auth and gzip compressed content. (Do...
authorAntoine Cellerier <dionoea@videolan.org>
Fri, 18 Apr 2008 13:41:40 +0000 (15:41 +0200)
committerAntoine Cellerier <dionoea@videolan.org>
Fri, 18 Apr 2008 13:41:40 +0000 (15:41 +0200)
NEWS
modules/access/http.c

diff --git a/NEWS b/NEWS
index f2dd3b3afb8603ad4af7d1b69b0f21d15a1b0524..6aaecf8b1f379500b361236d40cb2c3c494d4d4f 100644 (file)
--- 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
index 452b381f541046b46aad5a9d7b25e0def9a5d3a5..c129edb46e6883a8358766d0091971ac0c40b94b 100644 (file)
@@ -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@via.ecp.fr>
  *          Christophe Massiot <massiot@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 )
 {