uOFW
Reverse engineered PSP kernel 6.60.
Loading...
Searching...
No Matches
lib_http.h
1/* Copyright (C) 2011 - 2016 The uOFW team
2 See the file COPYING for copying permission.
3*/
4
10#ifndef LIB_HTTP_H
11#define LIB_HTTP_H
12
13/* lib_http specific error codes. */
14
15#define SCE_HTTP_ERROR_BEFORE_INIT 0x80431001
16#define SCE_HTTP_ERROR_NOT_SUPPORTED 0x80431004
17#define SCE_HTTP_ERROR_ALREADY_INITED 0x80431020
18#define SCE_HTTP_ERROR_BUSY 0x80431021
19#define SCE_HTTP_ERROR_OUT_OF_MEMORY 0x80431022
20#define SCE_HTTP_ERROR_NOT_FOUND 0x80431025
21#define SCE_HTTP_ERROR_INSUFFICIENT_HEAPSIZE 0x80431077
22#define SCE_HTTP_ERROR_BEFORE_COOKIE_LOAD 0x80431078
23#define SCE_HTTP_ERROR_INVALID_ID 0x80431100
24#define SCE_HTTP_ERROR_OUT_OF_SIZE 0x80431104
25#define SCE_HTTP_INVALID_VALUE 0x804311FE
26
27#endif /* LIB_HTTP_H */
28