[FFmpeg-devel] [PATCH] lavf/http: use a more compatible default user agent.

Michael Niedermayer michaelni at gmx.at
Fri Apr 5 20:00:21 CEST 2013


On Fri, Apr 05, 2013 at 07:10:21PM +0200, Clément Bœsch wrote:
> On Thu, Apr 04, 2013 at 12:18:21PM +0200, Clément Bœsch wrote:
> > Fixes Ticket 2265.
> > ---
> >  libavformat/http.c | 6 +++---
> >  1 file changed, 3 insertions(+), 3 deletions(-)
> > 
> > diff --git a/libavformat/http.c b/libavformat/http.c
> > index 1e3cff7..65b16a6 100644
> > --- a/libavformat/http.c
> > +++ b/libavformat/http.c
> > @@ -71,12 +71,13 @@ typedef struct {
> >  #define D AV_OPT_FLAG_DECODING_PARAM
> >  #define E AV_OPT_FLAG_ENCODING_PARAM
> >  #define DEC AV_OPT_FLAG_DECODING_PARAM
> > +#define DEFAULT_USER_AGENT "Mozilla/5.0 Lavf/" AV_STRINGIFY(LIBAVFORMAT_VERSION)
> >  static const AVOption options[] = {
> >  {"seekable", "control seekability of connection", OFFSET(seekable), AV_OPT_TYPE_INT, {.i64 = -1}, -1, 1, D },
> >  {"chunked_post", "use chunked transfer-encoding for posts", OFFSET(chunked_post), AV_OPT_TYPE_INT, {.i64 = 1}, 0, 1, E },
> >  {"headers", "set custom HTTP headers, can override built in default headers", OFFSET(headers), AV_OPT_TYPE_STRING, { 0 }, 0, 0, D|E },
> >  {"content_type", "force a content type", OFFSET(content_type), AV_OPT_TYPE_STRING, { 0 }, 0, 0, D|E },
> > -{"user-agent", "override User-Agent header", OFFSET(user_agent), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC},
> > +{"user-agent", "override User-Agent header", OFFSET(user_agent), AV_OPT_TYPE_STRING, {.str = DEFAULT_USER_AGENT}, 0, 0, DEC},
> >  {"multiple_requests", "use persistent connections", OFFSET(multiple_requests), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 1, D|E },
> >  {"post_data", "set custom HTTP post data", OFFSET(post_data), AV_OPT_TYPE_BINARY, .flags = D|E },
> >  {"timeout", "set timeout of socket I/O operations", OFFSET(rw_timeout), AV_OPT_TYPE_INT, {.i64 = -1}, -1, INT_MAX, D|E },
> > @@ -540,8 +541,7 @@ static int http_connect(URLContext *h, const char *path, const char *local_path,
> >      /* set default headers if needed */
> >      if (!has_header(s->headers, "\r\nUser-Agent: "))
> >          len += av_strlcatf(headers + len, sizeof(headers) - len,
> > -                           "User-Agent: %s\r\n",
> > -                           s->user_agent ? s->user_agent : LIBAVFORMAT_IDENT);
> > +                           "User-Agent: %s\r\n", s->user_agent);
> >      if (!has_header(s->headers, "\r\nAccept: "))
> >          len += av_strlcpy(headers + len, "Accept: */*\r\n",
> >                            sizeof(headers) - len);
> 
> Ping. Any opinion?
> 
> Note that even IE is using this "Mozilla/5.0" token. Also, in addition to
> increase "web compatibility, our "Lavf/..." token is kept.

i have no oppinon about this as i dont know how many sites it fixes
and how (m)any it breaks 

[...]

-- 
Michael     GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

You can kill me, but you cannot change the truth.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 198 bytes
Desc: Digital signature
URL: <http://ffmpeg.org/pipermail/ffmpeg-devel/attachments/20130405/2a57f300/attachment.asc>


More information about the ffmpeg-devel mailing list