Enumerations | Functions
Http.h File Reference
#include <SFML/Network/Export.h>
#include <SFML/Network/Types.h>
#include <SFML/System/Time.h>

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 sfHttpRequestsfHttpRequest_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 sfHttpsfHttp_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 sfHttpResponsesfHttp_sendRequest (sfHttp *http, const sfHttpRequest *request, sfTime timeout)
 Send a HTTP request and return the server's response.
 

Enumeration Type Documentation

Enumerate the available HTTP methods for a request.

Enumerator:
sfHttpGet 

Request in get mode, standard method to retrieve a page.

sfHttpPost 

Request in post mode, usually to send data to a page.

sfHttpHead 

Request a page's header only.

Definition at line 40 of file Http.h.

Enumerate all the valid status codes for a response.

Enumerator:
sfHttpOk 

Most common code returned when operation was successful.

sfHttpCreated 

The resource has successfully been created.

sfHttpAccepted 

The request has been accepted, but will be processed later by the server.

sfHttpNoContent 

Sent when the server didn't send any data in return.

sfHttpResetContent 

The server informs the client that it should clear the view (form) that caused the request to be sent.

sfHttpPartialContent 

The server has sent a part of the resource, as a response to a partial GET request.

sfHttpMultipleChoices 

The requested page can be accessed from several locations.

sfHttpMovedPermanently 

The requested page has permanently moved to a new location.

sfHttpMovedTemporarily 

The requested page has temporarily moved to a new location.

sfHttpNotModified 

For conditionnal requests, means the requested page hasn't changed and doesn't need to be refreshed.

sfHttpBadRequest 

The server couldn't understand the request (syntax error)

sfHttpUnauthorized 

The requested page needs an authentification to be accessed.

sfHttpForbidden 

The requested page cannot be accessed at all, even with authentification.

sfHttpNotFound 

The requested page doesn't exist.

sfHttpRangeNotSatisfiable 

The server can't satisfy the partial GET request (with a "Range" header field)

sfHttpInternalServerError 

The server encountered an unexpected error.

sfHttpNotImplemented 

The server doesn't implement a requested feature.

sfHttpBadGateway 

The gateway server has received an error from the source server.

sfHttpServiceNotAvailable 

The server is temporarily unavailable (overloaded, in maintenance, ...)

sfHttpGatewayTimeout 

The gateway server couldn't receive a response from the source server.

sfHttpVersionNotSupported 

The server doesn't support the requested HTTP version.

sfHttpInvalidResponse 

Response is not a valid HTTP one.

sfHttpConnectionFailed 

Connection with server failed.

Definition at line 52 of file Http.h.

Function Documentation

CSFML_NETWORK_API sfHttp* sfHttp_create ( void  )

Create a new Http object.

Returns
A new sfHttp object
CSFML_NETWORK_API void sfHttp_destroy ( sfHttp http)

Destroy a Http object.

Parameters
httpHttp 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).

Parameters
httpHttp object
requestRequest to send
timeoutMaximum time to wait
Returns
Server's response
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.

Parameters
httpHttp object
hostWeb server to connect to
portPort to use for connection
CSFML_NETWORK_API sfHttpRequest* sfHttpRequest_create ( void  )

Create a new HTTP request.

Returns
A new sfHttpRequest object
CSFML_NETWORK_API void sfHttpRequest_destroy ( sfHttpRequest httpRequest)

Destroy a HTTP request.

Parameters
httpRequestHTTP 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.

Parameters
httpRequestHTTP request
bodyContent 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).

Parameters
httpRequestHTTP request
fieldName of the field to set
valueValue 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.

Parameters
httpRequestHTTP request
majorMajor HTTP version number
minorMinor 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.

Parameters
httpRequestHTTP request
methodMethod 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.

Parameters
httpRequestHTTP request
uriURI to request, relative to the host
CSFML_NETWORK_API void sfHttpResponse_destroy ( sfHttpResponse httpResponse)

Destroy a HTTP response.

Parameters
httpResponseHTTP 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:

  • the requested page (for GET requests)
  • a response from the server (for POST requests)
  • nothing (for HEAD requests)
  • an error message (in case of an error)
Parameters
httpResponseHTTP response
Returns
The response body
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.

Parameters
httpResponseHTTP response
fieldName of the field to get
Returns
Value of the field, or empty string if not found
CSFML_NETWORK_API unsigned int sfHttpResponse_getMajorVersion ( const sfHttpResponse httpResponse)

Get the major HTTP version number of a HTTP response.

Parameters
httpResponseHTTP response
Returns
Major HTTP version number
CSFML_NETWORK_API unsigned int sfHttpResponse_getMinorVersion ( const sfHttpResponse httpResponse)

Get the minor HTTP version number of a HTTP response.

Parameters
httpResponseHTTP response
Returns
Minor HTTP version number
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).

Parameters
httpResponseHTTP response
Returns
Status code of the response