Skip to content
Snippets Groups Projects
Commit fbf216f8 authored by Martine Lenders's avatar Martine Lenders Committed by Martine Lenders
Browse files

gnrc_sock_dns: Move DNS server end point to implementation

parent 8eab80c3
No related branches found
No related tags found
No related merge requests found
...@@ -28,6 +28,9 @@ ...@@ -28,6 +28,9 @@
/* min domain name length is 1, so minimum record length is 7 */ /* min domain name length is 1, so minimum record length is 7 */
#define DNS_MIN_REPLY_LEN (unsigned)(sizeof(sock_dns_hdr_t ) + 7) #define DNS_MIN_REPLY_LEN (unsigned)(sizeof(sock_dns_hdr_t ) + 7)
/* global DNS server UDP endpoint */
sock_udp_ep_t sock_dns_server;
static ssize_t _enc_domain_name(uint8_t *out, const char *domain_name) static ssize_t _enc_domain_name(uint8_t *out, const char *domain_name)
{ {
/* /*
......
...@@ -35,9 +35,6 @@ ...@@ -35,9 +35,6 @@
#define DNS_SERVER "[2001:db8::1]:53" #define DNS_SERVER "[2001:db8::1]:53"
#endif #endif
/* global DNS server UDP endpoint */
sock_udp_ep_t sock_dns_server;
/* import "ifconfig" shell command, used for printing addresses */ /* import "ifconfig" shell command, used for printing addresses */
extern int _gnrc_netif_config(int argc, char **argv); extern int _gnrc_netif_config(int argc, char **argv);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment