mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 00:55:06 +01:00
15 lines
234 B
C
15 lines
234 B
C
|
#ifndef _DNS_H_
|
||
|
#define _DNS_H_
|
||
|
|
||
|
#include <network.h>
|
||
|
#include <stdio.h>
|
||
|
#include <string.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
#include <unistd.h> //usleep
|
||
|
|
||
|
u32 getipbyname(char *domain);
|
||
|
u32 getipbynamecached(char *domain);
|
||
|
|
||
|
#endif /* _DNS_H_ */
|