diff options
author | Josh Allmann <joshua.allmann@gmail.com> | 2010-06-08 10:26:16 +0000 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2010-06-08 10:26:16 +0000 |
commit | 6964d510e8328d04196b549f0e7149efd076b7b4 (patch) | |
tree | a5c30978e32ad11a1969c02aedd655e2362bceaf /libavformat/http.h | |
parent | 0f3254b83dcf7a13cabbf8a4ba271014b2ab147f (diff) | |
download | ffmpeg-6964d510e8328d04196b549f0e7149efd076b7b4.tar.gz |
Add the capability to write custom HTTP headers
Patch by Josh Allmann, joshua dot allmann at gmail
Originally committed as revision 23526 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/http.h')
-rw-r--r-- | libavformat/http.h | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/libavformat/http.h b/libavformat/http.h new file mode 100644 index 0000000000..6f0566d7d8 --- /dev/null +++ b/libavformat/http.h @@ -0,0 +1,42 @@ +/* + * HTTP definitions + * Copyright (c) 2010 Josh Allmann + * + * This file is part of FFmpeg. + * + * FFmpeg is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * FFmpeg is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with FFmpeg; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ +#ifndef AVFORMAT_HTTP_H +#define AVFORMAT_HTTP_H + +/** + * Sets custom HTTP headers. + * A trailing CRLF ("\r\n") is required for custom headers. + * Passing in an empty header string ("\0") will reset to defaults. + * + * The following headers can be overriden by custom values, + * otherwise they will be set to their defaults. + * -User-Agent + * -Accept + * -Range + * -Host + * -Connection + * + * @param h URL context for this HTTP connection + * @param headers the custom headers to set + */ +void ff_http_set_headers(URLContext *h, const char *headers); + +#endif /* AVFORMAT_HTTP_H */ |