Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
78b21c1d
Commit
78b21c1d
authored
Mar 10, 2014
by
Luca Barbato
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
http: Drop doxy comments
parent
55a215ba
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
5 deletions
+11
-5
http.c
libavformat/http.c
+11
-5
No files found.
libavformat/http.c
View file @
78b21c1d
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment