Go to the source code of this file.
Enumerations | |
enum | sfHttpMethod { sfHttpGet, sfHttpPost, sfHttpHead } |
Enumerate the available HTTP methods for a request. More... | |
enum | sfHttpStatus { sfHttpOk = 200, sfHttpCreated = 201, sfHttpAccepted = 202, sfHttpNoContent = 204, sfHttpResetContent = 205, sfHttpPartialContent = 206, sfHttpMultipleChoices = 300, sfHttpMovedPermanently = 301, sfHttpMovedTemporarily = 302, sfHttpNotModified = 304, sfHttpBadRequest = 400, sfHttpUnauthorized = 401, sfHttpForbidden = 403, sfHttpNotFound = 404, sfHttpRangeNotSatisfiable = 407, sfHttpInternalServerError = 500, sfHttpNotImplemented = 501, sfHttpBadGateway = 502, sfHttpServiceNotAvailable = 503, sfHttpGatewayTimeout = 504, sfHttpVersionNotSupported = 505, sfHttpInvalidResponse = 1000, sfHttpConnectionFailed = 1001 } |
Enumerate all the valid status codes for a response. More... | |
Functions | |
CSFML_NETWORK_API sfHttpRequest * | sfHttpRequest_create (void) |
Create a new HTTP request. | |
CSFML_NETWORK_API void | sfHttpRequest_destroy (sfHttpRequest *httpRequest) |
Destroy a HTTP request. | |
CSFML_NETWORK_API void | sfHttpRequest_setField (sfHttpRequest *httpRequest, const char *field, const char *value) |
Set the value of a header field of a HTTP request. | |
CSFML_NETWORK_API void | sfHttpRequest_setMethod (sfHttpRequest *httpRequest, sfHttpMethod method) |
Set a HTTP request method. | |
CSFML_NETWORK_API void | sfHttpRequest_setUri (sfHttpRequest *httpRequest, const char *uri) |
Set a HTTP request URI. | |
CSFML_NETWORK_API void | sfHttpRequest_setHttpVersion (sfHttpRequest *httpRequest, unsigned int major, unsigned int minor) |
Set the HTTP version of a HTTP request. | |
CSFML_NETWORK_API void | sfHttpRequest_setBody (sfHttpRequest *httpRequest, const char *body) |
Set the body of a HTTP request. | |
CSFML_NETWORK_API void | sfHttpResponse_destroy (sfHttpResponse *httpResponse) |
Destroy a HTTP response. | |
CSFML_NETWORK_API const char * | sfHttpResponse_getField (const sfHttpResponse *httpResponse, const char *field) |
Get the value of a field of a HTTP response. | |
CSFML_NETWORK_API sfHttpStatus | sfHttpResponse_getStatus (const sfHttpResponse *httpResponse) |
Get the status code of a HTTP reponse. | |
CSFML_NETWORK_API unsigned int | sfHttpResponse_getMajorVersion (const sfHttpResponse *httpResponse) |
Get the major HTTP version number of a HTTP response. | |
CSFML_NETWORK_API unsigned int | sfHttpResponse_getMinorVersion (const sfHttpResponse *httpResponse) |
Get the minor HTTP version number of a HTTP response. | |
CSFML_NETWORK_API const char * | sfHttpResponse_getBody (const sfHttpResponse *httpResponse) |
Get the body of a HTTP response. | |
CSFML_NETWORK_API sfHttp * | sfHttp_create (void) |
Create a new Http object. | |
CSFML_NETWORK_API void | sfHttp_destroy (sfHttp *http) |
Destroy a Http object. | |
CSFML_NETWORK_API void | sfHttp_setHost (sfHttp *http, const char *host, unsigned short port) |
Set the target host of a HTTP object. | |
CSFML_NETWORK_API sfHttpResponse * | sfHttp_sendRequest (sfHttp *http, const sfHttpRequest *request, sfTime timeout) |
Send a HTTP request and return the server's response. | |
enum sfHttpMethod |
enum sfHttpStatus |
Enumerate all the valid status codes for a response.
CSFML_NETWORK_API sfHttp* sfHttp_create | ( | void | ) |
Create a new Http object.
CSFML_NETWORK_API void sfHttp_destroy | ( | sfHttp * | http | ) |
Destroy a Http object.
http | Http object to destroy |
CSFML_NETWORK_API sfHttpResponse* sfHttp_sendRequest | ( | sfHttp * | http, |
const sfHttpRequest * | request, | ||
sfTime | timeout | ||
) |
Send a HTTP request and return the server's response.
You must have a valid host before sending a request (see sfHttp_setHost). Any missing mandatory header field in the request will be added with an appropriate value. Warning: this function waits for the server's response and may not return instantly; use a thread if you don't want to block your application, or use a timeout to limit the time to wait. A value of 0 means that the client will use the system defaut timeout (which is usually pretty long).
http | Http object |
request | Request to send |
timeout | Maximum time to wait |
CSFML_NETWORK_API void sfHttp_setHost | ( | sfHttp * | http, |
const char * | host, | ||
unsigned short | port | ||
) |
Set the target host of a HTTP object.
This function just stores the host address and port, it doesn't actually connect to it until you send a request. If the port is 0, it means that the HTTP client will use the right port according to the protocol used (80 for HTTP, 443 for HTTPS). You should leave it like this unless you really need a port other than the standard one, or use an unknown protocol.
http | Http object |
host | Web server to connect to |
port | Port to use for connection |
CSFML_NETWORK_API sfHttpRequest* sfHttpRequest_create | ( | void | ) |
Create a new HTTP request.
CSFML_NETWORK_API void sfHttpRequest_destroy | ( | sfHttpRequest * | httpRequest | ) |
Destroy a HTTP request.
httpRequest | HTTP request to destroy |
CSFML_NETWORK_API void sfHttpRequest_setBody | ( | sfHttpRequest * | httpRequest, |
const char * | body | ||
) |
Set the body of a HTTP request.
The body of a request is optional and only makes sense for POST requests. It is ignored for all other methods. The body is empty by default.
httpRequest | HTTP request |
body | Content of the body |
CSFML_NETWORK_API void sfHttpRequest_setField | ( | sfHttpRequest * | httpRequest, |
const char * | field, | ||
const char * | value | ||
) |
Set the value of a header field of a HTTP request.
The field is created if it doesn't exist. The name of the field is case insensitive. By default, a request doesn't contain any field (but the mandatory fields are added later by the HTTP client when sending the request).
httpRequest | HTTP request |
field | Name of the field to set |
value | Value of the field |
CSFML_NETWORK_API void sfHttpRequest_setHttpVersion | ( | sfHttpRequest * | httpRequest, |
unsigned int | major, | ||
unsigned int | minor | ||
) |
Set the HTTP version of a HTTP request.
The HTTP version is 1.0 by default.
httpRequest | HTTP request |
major | Major HTTP version number |
minor | Minor HTTP version number |
CSFML_NETWORK_API void sfHttpRequest_setMethod | ( | sfHttpRequest * | httpRequest, |
sfHttpMethod | method | ||
) |
Set a HTTP request method.
See the sfHttpMethod enumeration for a complete list of all the availale methods. The method is sfHttpGet by default.
httpRequest | HTTP request |
method | Method to use for the request |
CSFML_NETWORK_API void sfHttpRequest_setUri | ( | sfHttpRequest * | httpRequest, |
const char * | uri | ||
) |
Set a HTTP request URI.
The URI is the resource (usually a web page or a file) that you want to get or post. The URI is "/" (the root page) by default.
httpRequest | HTTP request |
uri | URI to request, relative to the host |
CSFML_NETWORK_API void sfHttpResponse_destroy | ( | sfHttpResponse * | httpResponse | ) |
Destroy a HTTP response.
httpResponse | HTTP response to destroy |
CSFML_NETWORK_API const char* sfHttpResponse_getBody | ( | const sfHttpResponse * | httpResponse | ) |
Get the body of a HTTP response.
The body of a response may contain:
httpResponse | HTTP response |
CSFML_NETWORK_API const char* sfHttpResponse_getField | ( | const sfHttpResponse * | httpResponse, |
const char * | field | ||
) |
Get the value of a field of a HTTP response.
If the field field is not found in the response header, the empty string is returned. This function uses case-insensitive comparisons.
httpResponse | HTTP response |
field | Name of the field to get |
CSFML_NETWORK_API unsigned int sfHttpResponse_getMajorVersion | ( | const sfHttpResponse * | httpResponse | ) |
Get the major HTTP version number of a HTTP response.
httpResponse | HTTP response |
CSFML_NETWORK_API unsigned int sfHttpResponse_getMinorVersion | ( | const sfHttpResponse * | httpResponse | ) |
Get the minor HTTP version number of a HTTP response.
httpResponse | HTTP response |
CSFML_NETWORK_API sfHttpStatus sfHttpResponse_getStatus | ( | const sfHttpResponse * | httpResponse | ) |
Get the status code of a HTTP reponse.
The status code should be the first thing to be checked after receiving a response, it defines whether it is a success, a failure or anything else (see the sfHttpStatus enumeration).
httpResponse | HTTP response |