search for: dns_max_servers

Displaying 3 results from an estimated 3 matches for "dns_max_servers".

2015 Sep 10
3
[PATCH 0/1] efi: DNS resolver
From: Sylvain Gault <sylvain.gault at gmail.com> Despite having native network capabilities, UEFI 2.4 (the most widely deployed at the moment) has no native DNS resolver. I propose here an implementation more or less inspired by the one found in core/legacynet/dnsresolv.c. Since it's non-trivial, I'd like to ask for a deep review of this code. I tried to make it as strong as
2019 Apr 18
0
[PATCH] efi/pxe.c: Allow ipv4 host names
...: Lincoln Thurlow <lincoln at isi.edu> --- efi/pxe.c | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/efi/pxe.c b/efi/pxe.c index 5b552b39..366f30fd 100644 --- a/efi/pxe.c +++ b/efi/pxe.c @@ -35,8 +35,52 @@ int reset_pxe(void) #define DNS_MAX_SERVERS 4 /* Max no of DNS servers */ uint32_t dns_server[DNS_MAX_SERVERS] = {0, }; + +/* + * parse the ip_str and return the ip address with *res. + * return true if the whole string was consumed and the result + * was valid. + * + */ +static bool parse_quad(const char *ip_str, uint32_t *res) +{...
2013 Mar 07
4
Syslinux-5.10-pre1
...ayout.inc: remove duplicate .stack segment definition core: dynamically size the heap core, diskio: allocate the disk cache from the heap core: remove the .hugebss section Merge remote-tracking branch 'origin/master' into lwip pxe: remove non-lwIP definition of DNS_MAX_SERVERS Merge remote-tracking branch 'origin/master' into lwip Generalize ipappend handling as "sysappend", and move to PM code pxe, http: send the sysappend/ipappend strings as cookies Merge remote-tracking branch 'origin/master' into lwip Additional...