Lines Matching refs:NHTTPConnectionHandle
180 typedef s32 NHTTPConnectionHandle; /**< 接続ハンドルID */ typedef
185 typedef s32 (*NHTTPConnectionCallback)(NHTTPConnectionHandle handle, NHTTPConnectionEvent event, vo…
250 NHTTPConnectionHandle NHTTP_CreateConnection(const char *url, NHTTPReqMethod method, char *bodyBuf,…
251 s32 NHTTP_DestroyConnection(NHTTPConnectionHandle handle);
252 s32 NHTTP_StartConnection(NHTTPConnectionHandle handle);
253 s32 NHTTP_StartConnectionAsync(NHTTPConnectionHandle handle);
254 s32 NHTTP_CancelConnection(NHTTPConnectionHandle handle);
255 s32 NHTTP_WaitForConnection(NHTTPConnectionHandle handle);
256 s32 NHTTP_GetConnectionStatus(NHTTPConnectionHandle handle);
257 s32 NHTTP_GetConnectionProgress(NHTTPConnectionHandle handle, u32 *received, u32 *contentLen);
258 s32 NHTTP_GetConnectionError(NHTTPConnectionHandle handle);
259 s32 NHTTP_GetConnectionSSLError(NHTTPConnectionHandle handle);
260 void *NHTTP_GetUserParam(NHTTPConnectionHandle handle);
263 s32 NHTTP_SetVerifyOption(NHTTPConnectionHandle handle, u32 verifyOption);
264 s32 NHTTP_SetRootCA(NHTTPConnectionHandle handle, u8 *rootCAData, int rootCASize);
265 s32 NHTTP_SetInternalRootCA(NHTTPConnectionHandle handle, u32 internalCaCertId);
266 s32 NHTTP_SetRootCaStore(NHTTPConnectionHandle handle, NSSLCertStoreId rootCAId);
267 s32 NHTTP_SetClientCert(NHTTPConnectionHandle handle, u8 *clientCertData, int clientCertSize, u8 *p…
268 s32 NHTTP_SetInternalClientCert(NHTTPConnectionHandle handle, u32 internalClientCertId);
269 s32 NHTTP_SetClientCertId(NHTTPConnectionHandle handle, NSSLCertId clientCertId);
270 s32 NHTTP_RemoveClientCert(NHTTPConnectionHandle handle);
271 s32 NHTTP_RemoveRootCA(NHTTPConnectionHandle handle);
272 s32 NHTTP_SetRootCADefault(NHTTPConnectionHandle handle);
273 s32 NHTTP_SetClientCertDefault(NHTTPConnectionHandle handle);
274 s32 NHTTP_DisableVerifyOptionForDebug(NHTTPConnectionHandle handle, u32 verifyOption);
277 s32 NHTTP_SetProxy(NHTTPConnectionHandle handle, const char *proxy, u16 port, const char *userName,…
278 s32 NHTTP_SetProxyDefault(NHTTPConnectionHandle handle);
279 s32 NHTTP_SetBasicAuthorization(NHTTPConnectionHandle handle, const char *userName, const char *pas…
280 s32 NHTTP_SetSocketBufferSize(NHTTPConnectionHandle handle, u32 size);
281 s32 NHTTP_SetSocketSendBufferSize(NHTTPConnectionHandle handle, u32 size);
284 s32 NHTTP_AddHeaderField(NHTTPConnectionHandle handle, const char *label, const char *value);
286 void* NHTTP_RemoveExistingAddedPostData(NHTTPConnectionHandle handle, const char *label);
287 void* NHTTP_RemovePostDataHead(NHTTPConnectionHandle handle);
288 void* NHTTP_GetPostDataRaw(NHTTPConnectionHandle handle);
290 s32 NHTTP_AddPostDataAscii(NHTTPConnectionHandle handle, const char *label, const char *value, void…
291 s32 NHTTP_AddPostDataBinary(NHTTPConnectionHandle handle, const char *label, const void *value, u32…
292 s32 NHTTP_AddPostDataRaw(NHTTPConnectionHandle handle, const void *value, u32 length, void* memory);
294 s32 NHTTP_AddPostDataAscii(NHTTPConnectionHandle handle, const char *label, const char *value);
295 s32 NHTTP_AddPostDataBinary(NHTTPConnectionHandle handle, const char *label, const void *value, u32…
296 s32 NHTTP_AddPostDataRaw(NHTTPConnectionHandle handle, const void *value, u32 length);
298 s32 NHTTP_SetPostDataEncoding(NHTTPConnectionHandle handle, NHTTPEncodingType type);
299 s32 NHTTP_SetPostDataLazySet(NHTTPConnectionHandle handle, NHTTPPostDataType dataType);
302 s32 NHTTP_GetBodyBuffer(NHTTPConnectionHandle handle, char **bodyBuffer, u32 *size);
303 s32 NHTTP_AllocBodyBuffer(NHTTPConnectionHandle handle, u32 size);
304 s32 NHTTP_FreeBodyBuffer(NHTTPConnectionHandle handle);
305 s32 NHTTP_GetHeaderField(NHTTPConnectionHandle, const char *label, char *value, u32 maxLen);
306 s32 NHTTP_GetHeaderAll(NHTTPConnectionHandle handle, char *value, u32 maxLen);
307 s32 NHTTP_GetResultCode(NHTTPConnectionHandle handle);