|
int | sceHttpInit (unsigned int unknown1) |
| Init the http library.
|
|
int | sceHttpEnd (void) |
| Terminate the http library.
|
|
int | sceHttpCreateTemplate (char *agent, int unknown1, int unknown2) |
| Create a http template.
|
|
int | sceHttpDeleteTemplate (int templateid) |
| Delete a http template.
|
|
int | sceHttpCreateConnection (int templateid, char *host, char *unknown1, unsigned short port, int unknown2) |
| Create a http connection.
|
|
int | sceHttpCreateConnectionWithURL (int templateid, const char *url, int unknown1) |
| Create a http connection to a url.
|
|
int | sceHttpDeleteConnection (int connectionid) |
| Delete a http connection.
|
|
int | sceHttpCreateRequest (int connectionid, PspHttpMethod method, char *path, SceULong64 contentlength) |
| Create a http request.
|
|
int | sceHttpCreateRequestWithURL (int connectionid, PspHttpMethod method, char *url, SceULong64 contentlength) |
| Create a http request with url.
|
|
int | sceHttpDeleteRequest (int requestid) |
| Delete a http request.
|
|
int | sceHttpSendRequest (int requestid, void *data, unsigned int datasize) |
| Send a http request.
|
|
int | sceHttpAbortRequest (int requestid) |
| Abort a http request.
|
|
int | sceHttpReadData (int requestid, void *data, unsigned int datasize) |
| Read a http request response.
|
|
int | sceHttpGetContentLength (int requestid, SceULong64 *contentlength) |
| Get http request response length.
|
|
int | sceHttpGetStatusCode (int requestid, int *statuscode) |
| Get http request status code.
|
|
int | sceHttpSetResolveTimeOut (int id, unsigned int timeout) |
| Set resolver timeout.
|
|
int | sceHttpSetResolveRetry (int id, int count) |
| Set resolver retry.
|
|
int | sceHttpSetConnectTimeOut (int id, unsigned int timeout) |
| Set connect timeout.
|
|
int | sceHttpSetSendTimeOut (int id, unsigned int timeout) |
| Set send timeout.
|
|
int | sceHttpSetRecvTimeOut (int id, unsigned int timeout) |
| Set receive timeout.
|
|
int | sceHttpEnableKeepAlive (int id) |
| Enable keep alive.
|
|
int | sceHttpDisableKeepAlive (int id) |
| Disable keep alive.
|
|
int | sceHttpEnableRedirect (int id) |
| Enable redirect.
|
|
int | sceHttpDisableRedirect (int id) |
| Disable redirect.
|
|
int | sceHttpEnableCookie (int id) |
| Enable cookie.
|
|
int | sceHttpDisableCookie (int id) |
| Disable cookie.
|
|
int | sceHttpSaveSystemCookie (void) |
| Save cookie.
|
|
int | sceHttpLoadSystemCookie (void) |
| Load cookie.
|
|
int | sceHttpAddExtraHeader (int id, char *name, char *value, int unknown1) |
| Add content header.
|
|
int | sceHttpDeleteHeader (int id, const char *name) |
| Delete content header.
|
|
int | sceHttpsInit (int unknown1, int unknown2, int unknown3, int unknown4) |
| Init the https library.
|
|
int | sceHttpsEnd (void) |
| Terminate the https library.
|
|
int | sceHttpsLoadDefaultCert (int unknown1, int unknown2) |
| Load default certificate.
|
|
int | sceHttpDisableAuth (int id) |
|
int | sceHttpDisableCache (int id) |
|
int | sceHttpEnableAuth (int id) |
|
int | sceHttpEnableCache (int id) |
|
int | sceHttpEndCache (void) |
|
int | sceHttpGetAllHeader (int request, unsigned char **header, unsigned int *header_size) |
|
int | sceHttpGetNetworkErrno (int request, int *err_num) |
|
int | sceHttpGetProxy (int id, int *activate_flag, int *mode, unsigned char *proxy_host, SceSize len, unsigned short *proxy_port) |
|
int | sceHttpInitCache (SceSize max_size) |
|
int | sceHttpSetAuthInfoCB (int id, PspHttpPasswordCB cbfunc) |
|
int | sceHttpSetProxy (int id, int activate_flag, int mode, const unsigned char *new_proxy_host, unsigned short new_proxy_port) |
|
int | sceHttpSetResHeaderMaxSize (int id, unsigned int header_size) |
|
int | sceHttpSetMallocFunction (PspHttpMallocFunction malloc_func, PspHttpFreeFunction free_func, PspHttpReallocFunction realloc_func) |
|