summaryrefslogtreecommitdiff
path: root/libavformat/httpauth.c
Commit message (Collapse)AuthorAge
* cosmetics: Remove extra newlines at EOFAlex Converse2012-01-27
|
* http: Handle proxy authenticationMartin Storsjö2011-11-11
| | | | | | | | Tested with both Basic and Digest authentication, and tested with both proxy authentication and authentication for the requested resource at the same time. Signed-off-by: Martin Storsjö <martin@martin.st>
* Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-19
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Make parse_key_value from httpauth a common lavf internal functionMartin Storsjö2010-08-19
| | | | Originally committed as revision 24832 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use AV_BASE64_SIZE() macroHoward Chu2010-06-04
| | | | Originally committed as revision 23462 to svn://svn.ffmpeg.org/ffmpeg/trunk
* httpauth: Fix the length passed to av_strlcatMartin Storsjö2010-06-03
| | | | | | | Since the buffer always was large enough, this bug didn't have any effect in practice. Originally committed as revision 23447 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make ff_random_get_seed public, rename to av_get_random_seed, export the headerMartin Storsjö2010-05-23
| | | | | | | Keep an old ff_ named function for binary compatibility until the next major bump. Originally committed as revision 23254 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix buffer size; should hold 2 32-bit integers in hex = 16 chars + terminatingRonald S. Bultje2010-04-02
| | | | | | zero, so should be 17 bytes, not 9. Originally committed as revision 22786 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove a redundant null pointer checkMartin Storsjö2010-03-25
| | | | Originally committed as revision 22679 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for http digest authenticationMartin Storsjö2010-03-25
| | | | Originally committed as revision 22667 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split out http authentication handling into a separate fileMartin Storsjö2010-03-24
This prepares for adding support for more authentication methods Originally committed as revision 22660 to svn://svn.ffmpeg.org/ffmpeg/trunk