12#ifndef __PSPUTILITY_NETPARAM_H__
13#define __PSPUTILITY_NETPARAM_H__
31#define PSP_NETPARAM_NAME 0
32#define PSP_NETPARAM_SSID 1
33#define PSP_NETPARAM_SECURE 2
34#define PSP_NETPARAM_WEPKEY 3
35#define PSP_NETPARAM_IS_STATIC_IP 4
36#define PSP_NETPARAM_IP 5
37#define PSP_NETPARAM_NETMASK 6
38#define PSP_NETPARAM_ROUTE 7
39#define PSP_NETPARAM_MANUAL_DNS 8
40#define PSP_NETPARAM_PRIMARYDNS 9
41#define PSP_NETPARAM_SECONDARYDNS 10
42#define PSP_NETPARAM_PROXY_USER 11
43#define PSP_NETPARAM_PROXY_PASS 12
44#define PSP_NETPARAM_USE_PROXY 13
45#define PSP_NETPARAM_PROXY_SERVER 14
46#define PSP_NETPARAM_PROXY_PORT 15
47#define PSP_NETPARAM_UNKNOWN1 16
48#define PSP_NETPARAM_UNKNOWN2 17
50#define PSP_NETPARAM_ERROR_BAD_NETCONF 0x80110601
51#define PSP_NETPARAM_ERROR_BAD_PARAM 0x80110604
float x
Definition psptypes.h:0
uint32_t u32
Definition psptypes.h:41
int sceUtilityDeleteNetParam(int conf)
Deletes a Network Configuration.
int sceUtilityCopyNetParam(int src, int dest)
Copies a Network Configuration to another.
int sceUtilitySetNetParam(int param, const void *val)
Sets a network parameter.
int sceUtilityCheckNetParam(int id)
Check existance of a Net Configuration.
int sceUtilityCreateNetParam(int conf)
Create a new Network Configuration.
int sceUtilityGetNetParam(int conf, int param, netData *data)
Get Net Configuration Parameter.
Datatype for sceUtilityGetNetParam since it can return a u32 or a string we use a union to avoid ugly...
Definition psputility_netparam.h:26
u32 asUint
Definition psputility_netparam.h:27