]>
git.ipfire.org Git - people/ms/u-boot.git/blob - net/dns.h
2 * (C) Masami Komiya <mkomiya@sonare.it> 2005
3 * Copyright 2009, Robin Getz <rgetz@blackfin.uclinux.org>
5 * SPDX-License-Identifier: GPL-2.0+
11 #define DNS_SERVICE_PORT 53
12 #define DNS_TIMEOUT 10000UL
14 /* http://en.wikipedia.org/wiki/List_of_DNS_record_types */
17 DNS_CNAME_RECORD
= 0x05,
25 uint16_t tid
; /* Transaction ID */
26 uint16_t flags
; /* Flags */
27 uint16_t nqueries
; /* Questions */
28 uint16_t nanswers
; /* Answers */
29 uint16_t nauth
; /* Authority PRs */
30 uint16_t nother
; /* Other PRs */
31 unsigned char data
[1]; /* Data, variable length */
34 void dns_start(void); /* Begin DNS */