mirror of
https://github.com/pspdev/pspsdk.git
synced 2025-12-24 12:42:36 +00:00
117 lines
3.0 KiB
C
117 lines
3.0 KiB
C
/*
|
|
* PSP Software Development Kit - https://github.com/pspdev
|
|
* -----------------------------------------------------------------------
|
|
* Licensed under the BSD license, see LICENSE in PSPSDK root for details.
|
|
*
|
|
* psputility_netparam.h - Definitions and Functions to manage Network
|
|
* parameters.
|
|
*
|
|
* Copyright (c) 2005 John Kelley <ps2dev@kelley.ca>
|
|
*
|
|
*/
|
|
#ifndef __PSPUTILITY_NETPARAM_H__
|
|
#define __PSPUTILITY_NETPARAM_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <psptypes.h>
|
|
|
|
/**
|
|
* Datatype for sceUtilityGetNetParam
|
|
* since it can return a u32 or a string
|
|
* we use a union to avoid ugly casting
|
|
*/
|
|
typedef union {
|
|
u32 asUint;
|
|
char asString[128];
|
|
} netData;
|
|
|
|
#define PSP_NETPARAM_NAME 0 // string
|
|
#define PSP_NETPARAM_SSID 1 // string
|
|
#define PSP_NETPARAM_SECURE 2 // int
|
|
#define PSP_NETPARAM_WEPKEY 3 // string
|
|
#define PSP_NETPARAM_IS_STATIC_IP 4 // int
|
|
#define PSP_NETPARAM_IP 5 // string
|
|
#define PSP_NETPARAM_NETMASK 6 // string
|
|
#define PSP_NETPARAM_ROUTE 7 // string
|
|
#define PSP_NETPARAM_MANUAL_DNS 8 // int
|
|
#define PSP_NETPARAM_PRIMARYDNS 9 // string
|
|
#define PSP_NETPARAM_SECONDARYDNS 10 // string
|
|
#define PSP_NETPARAM_PROXY_USER 11 // string
|
|
#define PSP_NETPARAM_PROXY_PASS 12 // string
|
|
#define PSP_NETPARAM_USE_PROXY 13 // int
|
|
#define PSP_NETPARAM_PROXY_SERVER 14 // string
|
|
#define PSP_NETPARAM_PROXY_PORT 15 // int
|
|
#define PSP_NETPARAM_UNKNOWN1 16 // int
|
|
#define PSP_NETPARAM_UNKNOWN2 17 // int
|
|
|
|
#define PSP_NETPARAM_ERROR_BAD_NETCONF 0x80110601
|
|
#define PSP_NETPARAM_ERROR_BAD_PARAM 0x80110604
|
|
|
|
/**
|
|
* Check existance of a Net Configuration
|
|
*
|
|
* @param id - id of net Configuration (1 to n)
|
|
* @return 0 on success,
|
|
*/
|
|
int sceUtilityCheckNetParam(int id);
|
|
|
|
/**
|
|
* Get Net Configuration Parameter
|
|
*
|
|
* @param conf - Net Configuration number (1 to n)
|
|
* (0 returns valid but seems to be a copy of the last config requested)
|
|
* @param param - which parameter to get
|
|
* @param data - parameter data
|
|
* @return 0 on success,
|
|
*/
|
|
int sceUtilityGetNetParam(int conf, int param, netData *data);
|
|
|
|
/**
|
|
* Create a new Network Configuration
|
|
* @note This creates a new configuration at conf and clears 0
|
|
*
|
|
* @param conf - Net Configuration number (1 to n)
|
|
*
|
|
* @return 0 on success
|
|
*/
|
|
int sceUtilityCreateNetParam(int conf);
|
|
|
|
/**
|
|
* Sets a network parameter
|
|
* @note This sets only to configuration 0
|
|
*
|
|
* @param param - Which parameter to set
|
|
* @param val - Pointer to the the data to set
|
|
*
|
|
* @return 0 on success
|
|
*/
|
|
int sceUtilitySetNetParam(int param, const void *val);
|
|
|
|
/**
|
|
* Copies a Network Configuration to another
|
|
*
|
|
* @param src - Source Net Configuration number (0 to n)
|
|
* @param dest - Destination Net Configuration number (0 to n)
|
|
*
|
|
* @return 0 on success
|
|
*/
|
|
int sceUtilityCopyNetParam(int src, int dest);
|
|
|
|
/**
|
|
* Deletes a Network Configuration
|
|
*
|
|
* @param conf - Net Configuration number (1 to n)
|
|
*
|
|
* @return 0 on success
|
|
*/
|
|
int sceUtilityDeleteNetParam(int conf);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|