mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-09 13:05:24 +01:00
0cca811b34
*Fixed weird last random character at game info text *Reload background/cursor/... on theme apply after download *Added connection check function for URLs (like a PING) *Added timeout on trying to connect to the theme download hoster *Fixed redundant characters on search bar when both upper and lower case exist in a search
31 lines
984 B
C
31 lines
984 B
C
/****************************************************************************
|
|
* Network Operations
|
|
* for USB Loader GX
|
|
*
|
|
* HTTP operations
|
|
* Written by dhewg/bushing modified by dimok
|
|
****************************************************************************/
|
|
#ifndef _NETWORKOPS_H_
|
|
#define _NETWORKOPS_H_
|
|
|
|
#define NETWORKBLOCKSIZE 5*1024 //5KB
|
|
void Initialize_Network(void);
|
|
void DeinitNetwork(void);
|
|
bool IsNetworkInit(void);
|
|
char * GetNetworkIP(void);
|
|
char * GetIncommingIP(void);
|
|
bool ShutdownWC24();
|
|
bool CheckConnection(const char *url, float timeout = 5.0f);
|
|
s32 network_request(s32 connection, const char * request, char * filename);
|
|
s32 network_read(s32 connection, u8 *buf, u32 len);
|
|
s32 download_request(const char * url, char * filename = NULL);
|
|
void CloseConnection();
|
|
char * HEAD_Request(const char * url);
|
|
void HaltNetworkThread();
|
|
void ResumeNetworkWait();
|
|
void ResumeNetworkThread();
|
|
void InitNetworkThread();
|
|
void ShutdownNetworkThread();
|
|
|
|
#endif
|