OSDN Git Service

lavf: Handle the environment variable no_proxy more properly
authorMartin Storsjö <martin@martin.st>
Wed, 27 Feb 2013 09:13:47 +0000 (11:13 +0200)
committerMartin Storsjö <martin@martin.st>
Wed, 27 Feb 2013 19:32:13 +0000 (21:32 +0200)
commitde9cd1b173bab185e97995db09d40318378ab9ed
treecd251db979552b30873019bf8b3aec79da374b33
parente2c272eb3660d7f4f1d7720980e30f6a617e7eb3
lavf: Handle the environment variable no_proxy more properly

The handling of the environment variable no_proxy, present since
one of the initial commits (de6d9b6404), is inconsistent with
how many other applications and libraries interpret this
variable. Its bare presence does not indicate that the use of
proxies should be skipped, but it is some sort of pattern for
hosts that does not need using a proxy (e.g. for a local network).

As investigated by Rudolf Polzer, different libraries handle this
in different ways, some supporting IP address masks, some supporting
arbitrary globbing using *, some just checking that the pattern matches
the end of the hostname without regard for whether it actually is
the right domain or a domain that ends in the same string.

This simple logic should be pretty similar to the logic used by
lynx and curl.

Signed-off-by: Martin Storsjö <martin@martin.st>
libavformat/http.c
libavformat/internal.h
libavformat/tls.c
libavformat/utils.c
libavformat/version.h