Commit a0234fc6 authored by Christophe Massiot's avatar Christophe Massiot

* Backported RTP access module from HEAD.

* Fixed a compile issue in the HTTP plug-in.
parent 7cc03927
......@@ -74,6 +74,7 @@ PLUGINS_TARGETS := a52/a52 \
ac3_spdif/ac3_spdif \
access/file \
access/udp \
access/rtp \
access/http \
alsa/alsa \
arts/arts \
......
This diff is collapsed.
......@@ -446,7 +446,7 @@ PLUGINS="${PLUGINS} dummy null rc logger mpeg_es mpeg_ps mpeg_ts mpeg_audio file
dnl
dnl Network modules
dnl
NETWORK_MODULES="udp http ipv4"
NETWORK_MODULES="udp http rtp ipv4"
dnl
dnl Accelerated modules
......
file_SOURCES = file.c
udp_SOURCES = udp.c
http_SOURCES = http.c
rtp_SOURCES = rtp.c
......@@ -2,7 +2,7 @@
* http.c: HTTP access plug-in
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* $Id: http.c,v 1.10.2.3 2002/07/25 20:22:17 sigmunau Exp $
* $Id: http.c,v 1.10.2.4 2002/10/03 22:14:58 massiot Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
......@@ -157,7 +157,7 @@ static int HTTPConnect( input_thread_t * p_input, off_t i_tell )
snprintf( psz_buffer, sizeof(psz_buffer),
"%s"
HTTP_USERAGENT HTTP_END,
p_access_data->psz_buffer, i_tell );
p_access_data->psz_buffer );
}
psz_buffer[sizeof(psz_buffer) - 1] = '\0';
......
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment