mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-03 18:15:06 +01:00
d3d2055583
*Small change to the download request function, added filename reading
31 lines
847 B
C
31 lines
847 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);
|
|
bool IsNetworkInit(void);
|
|
char * GetNetworkIP(void);
|
|
char * GetIncommingIP(void);
|
|
bool ShutdownWC24();
|
|
s32 network_request(const char * request, char * filename);
|
|
s32 network_read(u8 *buf, u32 len);
|
|
s32 download_request(const char * url, char * filename = NULL);
|
|
void CloseConnection();
|
|
int CheckUpdate();
|
|
|
|
void HaltNetworkThread();
|
|
void ResumeNetworkWait();
|
|
void ResumeNetworkThread();
|
|
void InitNetworkThread();
|
|
void ShutdownNetworkThread();
|
|
|
|
#endif
|