|
| VITASDK_BUILD_ASSERT_EQ (0x10, SceHttpMemoryPoolStats) |
|
| VITASDK_BUILD_ASSERT_EQ (0x2C, SceHttpUriElement) |
|
| VITASDK_BUILD_ASSERT_EQ (8, SceHttpsData) |
|
| VITASDK_BUILD_ASSERT_EQ (8, SceHttpsCaList) |
|
int | sceHttpInit (unsigned int poolSize) |
|
int | sceHttpTerm (void) |
|
int | sceHttpGetMemoryPoolStats (SceHttpMemoryPoolStats *currentStat) |
|
int | sceHttpSetAuthInfoCallback (int id, SceHttpAuthInfoCallback cbfunc, void *userArg) |
|
int | sceHttpSetAuthEnabled (int id, int enable) |
|
int | sceHttpGetAuthEnabled (int id, int *enable) |
|
int | sceHttpSetRedirectCallback (int id, SceHttpRedirectCallback cbfunc, void *userArg) |
|
int | sceHttpSetAutoRedirect (int id, int enable) |
|
int | sceHttpGetAutoRedirect (int id, int *enable) |
|
int | sceHttpSetResolveTimeOut (int id, unsigned int usec) |
|
int | sceHttpSetResolveRetry (int id, int retry) |
|
int | sceHttpSetConnectTimeOut (int id, unsigned int usec) |
|
int | sceHttpSetSendTimeOut (int id, unsigned int usec) |
|
int | sceHttpSetRecvTimeOut (int id, unsigned int usec) |
|
int | sceHttpSendRequest (int reqId, const void *postData, unsigned int size) |
|
int | sceHttpAbortRequest (int reqId) |
|
int | sceHttpGetResponseContentLength (int reqId, unsigned long long int *contentLength) |
|
int | sceHttpGetStatusCode (int reqId, int *statusCode) |
|
int | sceHttpGetAllResponseHeaders (int reqId, char **header, unsigned int *headerSize) |
|
int | sceHttpReadData (int reqId, void *data, unsigned int size) |
|
int | sceHttpAddRequestHeader (int id, const char *name, const char *value, unsigned int mode) |
|
int | sceHttpRemoveRequestHeader (int id, const char *name) |
|
int | sceHttpParseResponseHeader (const char *header, unsigned int headerLen, const char *fieldStr, const char **fieldValue, unsigned int *valueLen) |
|
int | sceHttpParseStatusLine (const char *statusLine, unsigned int lineLen, int *httpMajorVer, int *httpMinorVer, int *responseCode, const char **reasonPhrase, unsigned int *phraseLen) |
|
int | sceHttpCreateTemplate (const char *userAgent, int httpVer, int autoProxyConf) |
|
int | sceHttpDeleteTemplate (int tmplId) |
|
int | sceHttpCreateConnection (int tmplId, const char *serverName, const char *scheme, unsigned short port, int enableKeepalive) |
|
int | sceHttpCreateConnectionWithURL (int tmplId, const char *url, int enableKeepalive) |
|
int | sceHttpDeleteConnection (int connId) |
|
int | sceHttpCreateRequest (int connId, int method, const char *path, unsigned long long int contentLength) |
|
int | sceHttpCreateRequestWithURL (int connId, int method, const char *url, unsigned long long int contentLength) |
|
int | sceHttpDeleteRequest (int reqId) |
|
int | sceHttpSetResponseHeaderMaxSize (int id, unsigned int headerSize) |
|
int | sceHttpSetRequestContentLength (int id, unsigned long long int contentLength) |
|
int | sceHttpUriEscape (char *out, unsigned int *require, unsigned int prepare, const char *in) |
|
int | sceHttpUriUnescape (char *out, unsigned int *require, unsigned int prepare, const char *in) |
|
int | sceHttpUriParse (SceHttpUriElement *out, const char *srcUrl, void *pool, unsigned int *require, unsigned int prepare) |
|
int | sceHttpUriBuild (char *out, unsigned int *require, unsigned int prepare, const SceHttpUriElement *srcElement, unsigned int option) |
|
int | sceHttpUriMerge (char *mergedUrl, const char *url, const char *relativeUrl, unsigned int *require, unsigned int prepare, unsigned int option) |
|
int | sceHttpUriSweepPath (char *dst, const char *src, unsigned int srcSize) |
|
int | sceHttpsLoadCert (int caCertNum, const SceHttpsData **caList, const SceHttpsData *cert, const SceHttpsData *privKey) |
| Register RootCA certificate for HTTPS authentication.
|
|
int | sceHttpsUnloadCert (void) |
|
int | sceHttpsEnableOption (unsigned int sslFlags) |
|
int | sceHttpsDisableOption (unsigned int sslFlags) |
|
int | sceHttpsGetSslError (int id, int *errNum, unsigned int *detail) |
|
int | sceHttpsSetSslCallback (int id, SceHttpsCallback cbfunc, void *userArg) |
|
int | sceHttpsGetCaList (SceHttpsCaList *caList) |
|
int | sceHttpsFreeCaList (SceHttpsCaList *caList) |
|
int | sceHttpSetCookieEnabled (int id, int enable) |
|
int | sceHttpGetCookieEnabled (int id, int *enable) |
|
int | sceHttpGetCookie (const char *url, char *cookie, unsigned int *cookieLength, unsigned int prepare, int secure) |
|
int | sceHttpAddCookie (const char *url, const char *cookie, unsigned int cookieLength) |
|
int | sceHttpSetCookieRecvCallback (int id, SceHttpCookieRecvCallback cbfunc, void *userArg) |
|
int | sceHttpSetCookieSendCallback (int id, SceHttpCookieSendCallback cbfunc, void *userArg) |
|