Skip to main content

sceHttpCreateRequestWithURL

Function sceHttpCreateRequestWithURL 

Source
pub unsafe extern "C" fn sceHttpCreateRequestWithURL(
    connectionid: c_int,
    method: PspHttpMethod,
    url: *mut c_char,
    contentlength: SceULong64,
) -> c_int
Expand description

Create a http request with url.

@param connectionid - ID of the connection created by sceHttpCreateConnection or sceHttpCreateConnectionWithURL @param method - One of ::PspHttpMethod @param url - url to access @param contentlength - Length of the content (POST method only) @return A request ID on success, < 0 on error.