mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-05 02:55:07 +01:00
24 lines
303 B
C
24 lines
303 B
C
|
#ifndef _DNS_H_
|
||
|
#define _DNS_H_
|
||
|
|
||
|
#include <network.h>
|
||
|
#include <stdio.h>
|
||
|
#include <string.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
#include <unistd.h> //usleep
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C"
|
||
|
{
|
||
|
#endif
|
||
|
|
||
|
u32 getipbyname(char *domain);
|
||
|
u32 getipbynamecached(char *domain);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* _DNS_H_ */
|