diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2014-03-10 17:53:51 +0100 |
---|---|---|
committer | Reinhard Tartler <siretart@tauware.de> | 2014-03-15 09:44:59 -0400 |
commit | 738d68de85714608ad1e68fc9eab5dc0bfdda598 (patch) | |
tree | 46f886644d10713490757713a6987b64797d2329 | |
parent | 00ecce5c8bc00ce6f3f4bb19b681c5e14e259501 (diff) | |
download | ffmpeg-738d68de85714608ad1e68fc9eab5dc0bfdda598.tar.gz |
http: Drop doxy comments
(cherry picked from commit 78b21c1d7177e1d61ad3c9225f67699da089aa7c)
-rw-r--r-- | libavformat/http.c | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/libavformat/http.c b/libavformat/http.c index e54e258eb8..ce76f27652 100644 --- a/libavformat/http.c +++ b/libavformat/http.c @@ -49,17 +49,23 @@ typedef struct { unsigned char buffer[BUFFER_SIZE], *buf_ptr, *buf_end; int line_count; int http_code; - int64_t chunksize; /**< Used if "Transfer-Encoding: chunked" otherwise -1. */ + /* Used if "Transfer-Encoding: chunked" otherwise -1. */ + int64_t chunksize; int64_t off, filesize; char *location; HTTPAuthState auth_state; HTTPAuthState proxy_auth_state; char *headers; - int willclose; /**< Set if the server correctly handles Connection: close and will close the connection after feeding us the content. */ + /* Set if the server correctly handles Connection: close and will close + * the connection after feeding us the content. */ + int willclose; int chunked_post; - int end_chunked_post; /**< A flag which indicates if the end of chunked encoding has been sent. */ - int end_header; /**< A flag which indicates we have finished to read POST reply. */ - int multiple_requests; /**< A flag which indicates if we use persistent connections. */ + /* A flag which indicates if the end of chunked encoding has been sent. */ + int end_chunked_post; + /* A flag which indicates we have finished to read POST reply. */ + int end_header; + /* A flag which indicates if we use persistent connections. */ + int multiple_requests; uint8_t *post_data; int post_datalen; #if CONFIG_ZLIB |