FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Macros | Functions
http.h File Reference
#include "url.h"

Go to the source code of this file.

Macros

#define HTTP_HEADERS_SIZE   4096
 

Functions

void ff_http_init_auth_state (URLContext *dest, const URLContext *src)
 Initialize the authentication state based on another HTTP URLContext.
 
int ff_http_do_new_request (URLContext *h, const char *uri)
 Send a new HTTP request, reusing the old connection.
 
int ff_http_averror (int status_code, int default_averror)
 

Macro Definition Documentation

#define HTTP_HEADERS_SIZE   4096

Definition at line 27 of file http.h.

Referenced by http_connect().

Function Documentation

void ff_http_init_auth_state ( URLContext dest,
const URLContext src 
)

Initialize the authentication state based on another HTTP URLContext.

This can be used to pre-initialize the authentication parameters if they are known beforehand, to avoid having to do an initial failing request just to get the parameters.

Parameters
destURL context whose authentication state gets updated
srcURL context whose authentication state gets copied

Definition at line 133 of file http.c.

int ff_http_do_new_request ( URLContext h,
const char *  uri 
)

Send a new HTTP request, reusing the old connection.

Parameters
hpointer to the resource
uriuri used to perform the request
Returns
a negative value if an error condition occurred, 0 otherwise

Definition at line 260 of file http.c.

Referenced by rtmp_http_send_cmd().

int ff_http_averror ( int  status_code,
int  default_averror 
)

Definition at line 278 of file http.c.

Referenced by check_http_code(), ff_rtsp_averror(), and http_open_cnx().