update code

This commit is contained in:
Nick Peng
2018-05-03 23:53:15 +08:00
parent c8855bafaf
commit 1100031b0f
8 changed files with 256 additions and 11 deletions

10
dns_client.h Normal file
View File

@@ -0,0 +1,10 @@
#ifndef _SMART_DNS_CLIENT_H
#define _SMART_DNS_CLIENT_H
int dns_client_init(void);
int dns_client_query(char *host);
void dns_client_exit(void);
#endif