]> git.sesse.net Git - vlc/blobdiff - modules/access/http.c
PDA Interface:
[vlc] / modules / access / http.c
index b11a106bdb7822d553dafc5ac22e13ec8d129dd5..d79a6241d36ed4cb18f5960667a8058d240ee3e4 100644 (file)
@@ -2,7 +2,7 @@
  * http.c: HTTP access plug-in
  *****************************************************************************
  * Copyright (C) 2001, 2002 VideoLAN
- * $Id: http.c,v 1.41 2003/07/31 23:44:49 fenrir Exp $
+ * $Id: http.c,v 1.46 2003/09/10 21:03:56 fenrir Exp $
  *
  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  *
@@ -25,7 +25,6 @@
  * Preamble
  *****************************************************************************/
 #include <stdlib.h>
-#include <string.h>
 #include <vlc/vlc.h>
 #include <vlc/input.h>
 
@@ -151,6 +150,7 @@ static int HTTPConnect( input_thread_t * p_input, off_t i_tell )
                    "Range: bytes="I64Fd"-\r\n"
                    HTTP_USERAGENT
                    "%s"
+                   "Connection: Close\r\n"
                    HTTP_END,
                    p_access_data->psz_buffer, i_tell, p_access_data->psz_auth_string );
     }
@@ -160,6 +160,7 @@ static int HTTPConnect( input_thread_t * p_input, off_t i_tell )
                    "%s"
                    HTTP_USERAGENT
                    "%s"
+                   "Connection: Close\r\n"
                    HTTP_END,
                    p_access_data->psz_buffer, p_access_data->psz_auth_string );
     }
@@ -234,6 +235,17 @@ static int HTTPConnect( input_thread_t * p_input, off_t i_tell )
         return VLC_EGENERIC;
     }
 
+    /* Check for buggy Icecast servers */
+    if( strstr( psz_parser , "x-audiocast") )
+    {
+        i_protocol = ICY_PROTOCOL;
+        if( !p_input->psz_demux || !*p_input->psz_demux  )
+        {
+            msg_Info( p_input, "ICY server found, mp3 demuxer selected" );
+            p_input->psz_demux = "mp3";    // FIXME strdup ?
+        }
+    }
+
     /* Check the HTTP return code */
     i_code = atoi( (char*)psz_parser );
     msg_Dbg( p_input, "%s server replied: %i",
@@ -313,18 +325,8 @@ static int HTTPConnect( input_thread_t * p_input, off_t i_tell )
         if( !strcasecmp( psz_line, "Content-Length" ) )
         {
             off_t i_size = 0;
-#ifdef HAVE_ATOLL
-            i_size = i_tell + atoll( psz_value );
-#else
-            int sign = 1;
 
-            if( *psz_value == '-' ) sign = -1;
-            while( *psz_value >= '0' && *psz_value <= '9' )
-            {
-                i_size = i_size * 10 + *psz_value++ - '0';
-            }
-            i_size = i_tell + ( i_size * sign );
-#endif
+            i_size = i_tell + atoll( psz_value );
             msg_Dbg( p_input, "stream size is "I64Fd, i_size );
 
             vlc_mutex_lock( &p_input->stream.stream_lock );
@@ -401,53 +403,59 @@ static int HTTPConnect( input_thread_t * p_input, off_t i_tell )
  * Encode a string in base64
  * Code borrowed from Rafael Steil
  *****************************************************************************/
-
-
-
 void encodeblock( unsigned char in[3], unsigned char out[4], int len )
 {
-    static const char cb64[]="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
+    static const char cb64[]
+        = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
     out[0] = cb64[ in[0] >> 2 ];
     out[1] = cb64[ ((in[0] & 0x03) << 4) | ((in[1] & 0xf0) >> 4) ];
     out[2] = (unsigned char) (len > 1 ? cb64[ ((in[1] & 0x0f) << 2) | ((in[2] & 0xc0) >> 6) ] : '=');
     out[3] = (unsigned char) (len > 2 ? cb64[ in[2] & 0x3f ] : '=');
 }
 
-char *str_base64_encode(char *str, input_thread_t *p_input )
+char *str_base64_encode(char *psz_str, input_thread_t *p_input )
 {
     unsigned char in[3], out[4];
-    unsigned int i, len, blocksout = 0, linesize = strlen(str);
-       char *tmp = str;
-       char *result = (char *)malloc((linesize + 3 - linesize % 3) * 4 / 3 + 1);
-       
-       if (!result)
-        msg_Err( p_input, "out of memory" );           
-       while (*tmp) {
+    unsigned int i, len, blocksout = 0, linesize = strlen(psz_str);
+    char *psz_tmp = psz_str;
+    char *psz_result = (char *)malloc( linesize / 3 * 4 + 5 );
+
+    if( !psz_result )
+    {
+        msg_Err( p_input, "out of memory" );
+        return NULL;
+    }
+
+    while( *psz_tmp )
+    {
         len = 0;
-               
-        for( i = 0; i < 3; i++ ) {
-            in[i] = (unsigned char)(*tmp);
-                       
-            if (*tmp)
+
+        for( i = 0; i < 3; i++ )
+        {
+            in[i] = (unsigned char)*psz_tmp;
+
+            if (*psz_tmp)
                 len++;
             else
                 in[i] = 0;
-                       
-                       tmp++;
+
+            psz_tmp++;
         }
-               
-        if( len ) {
-            encodeblock( in, out, len);
-                       
-            for( i = 0; i < 4; i++ ) 
-                result[blocksout++] = out[i];
-        }              
-    }
-       
-       result[blocksout] = '\0';
-       return result;
-}
 
+        if( len )
+        {
+            encodeblock( in, out, len );
+
+            for( i = 0; i < 4; i++ )
+            {
+                psz_result[blocksout++] = out[i];
+            }
+        }
+    }
+
+    psz_result[blocksout] = '\0';
+    return psz_result;
+}
 
 /*****************************************************************************
  * Open: parse URL and open the remote file at the beginning
@@ -478,7 +486,7 @@ static int Open( vlc_object_t *p_this )
     p_access_data->psz_name = psz_name;
     p_access_data->psz_network = "";
     memset(p_access_data->psz_auth_string, 0, MAX_QUERY_SIZE);
-    
+
     var_Create( p_input, "ipv4", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
     var_Get( p_input, "ipv4", &val );
     if( val.i_int )
@@ -600,7 +608,7 @@ static int Open( vlc_object_t *p_this )
 
     /* Handle autehtification */
 
-    if ( psz_user == NULL )
+   if ( !psz_user )
     {
         var_Create( p_input, "http-user", VLC_VAR_STRING | VLC_VAR_DOINHERIT );
         var_Get( p_input, "http-user", &val );
@@ -609,17 +617,17 @@ static int Open( vlc_object_t *p_this )
         var_Create( p_input, "http-pwd", VLC_VAR_STRING | VLC_VAR_DOINHERIT );
         var_Get( p_input, "http-pwd", &val );
         psz_pwd = val.psz_string;
-    } 
+    }
 
-    if (psz_user != NULL)
+    if ( *psz_user )
     {
-        msg_Dbg( p_input, "Authentificating, user=%s, password=%s", 
-                                            psz_user, psz_pwd );
         char psz_user_pwd[MAX_QUERY_SIZE];
+        msg_Dbg( p_input, "authenticating, user=%s, password=%s",
+                                           psz_user, psz_pwd );
         snprintf( psz_user_pwd, MAX_QUERY_SIZE, "%s:%s", psz_user, psz_pwd );
-        snprintf( p_access_data->psz_auth_string, MAX_QUERY_SIZE, 
-                "Authorization: Basic %s\r\n", 
-                str_base64_encode( psz_user_pwd, p_input ) );
+        snprintf( p_access_data->psz_auth_string, MAX_QUERY_SIZE,
+                  "Authorization: Basic %s\r\n",
+                  str_base64_encode( psz_user_pwd, p_input ) );
     }
 
     /* Check proxy config variable */