]> git.sesse.net Git - vlc/commitdiff
Partial fix to response protocol version detection
authorRémi Denis-Courmont <rem@videolan.org>
Mon, 24 Sep 2007 16:24:02 +0000 (16:24 +0000)
committerRémi Denis-Courmont <rem@videolan.org>
Mon, 24 Sep 2007 16:24:02 +0000 (16:24 +0000)
src/network/httpd.c

index 62e34f532a58917f04c7d5a4b0be7d65747676ac..31fe4313893585f286415391b07f65b5478f9b8b 100644 (file)
@@ -1519,13 +1519,13 @@ static void httpd_ClientRecv( httpd_client_t *cl )
     {
         /* enough to see if it's Interleaved RTP over RTSP or RTSP/HTTP */
         i_len = httpd_NetRecv( cl, &cl->p_buffer[cl->i_buffer],
-                               4 - cl->i_buffer );
+                               7 - cl->i_buffer );
         if( i_len > 0 )
         {
             cl->i_buffer += i_len;
         }
 
-        if( cl->i_buffer >= 4 )
+        if( cl->i_buffer >= 7 )
         {
             /* detect type */
             if( cl->p_buffer[0] == '$' )
@@ -1539,12 +1539,12 @@ static void httpd_ClientRecv( httpd_client_t *cl )
 
                 cl->i_buffer      = 0;
             }
-            else if( !memcmp( cl->p_buffer, "HTTP", 4 ) )
+            else if( !memcmp( cl->p_buffer, "HTTP/1.", 7 ) )
             {
                 cl->query.i_proto = HTTPD_PROTO_HTTP;
                 cl->query.i_type  = HTTPD_MSG_ANSWER;
             }
-            else if( !memcmp( cl->p_buffer, "RTSP", 4 ) )
+            else if( !memcmp( cl->p_buffer, "RTSP/1.", 7 ) )
             {
                 cl->query.i_proto = HTTPD_PROTO_RTSP;
                 cl->query.i_type  = HTTPD_MSG_ANSWER;