Displaying 3 results from an estimated 3 matches for "ip_ok".
Did you mean:
ip_of
2015 Aug 13
3
[syslinux:master] efi/pxe: Reuse handle
...mp;bc);
> if (status != EFI_SUCCESS) {
> Print(L"Failed to lookup PxeBaseCodeProtocol\n");
> }
> @@ -182,4 +175,7 @@ void net_parse_dhcp(void)
> ((const uint8_t *)&ip)[3]);
>
> Print(L"My IP is %a\n", dst);
> + if (!(ip_ok(ip))) {
> + Print(L" NO valid IP found.\n");
> + }
> }
2012 Jul 16
5
[PATCH 0/5] Deleting __intcall() from Syslinux
From: Matt Fleming <matt.fleming at intel.com>
Since we can't use __intcall() for EFI, and since we can now have the
ELF module code resolve all our symbols at runtime, we should delete
as many references to __intcall() as possible and just access the
symbols directly.
The most interesting patch is the support for weak symbols. We need to
be able to reference derivative-specific
2012 Aug 14
1
[GIT PULL] elflink fixes
...if (flags || err)
return;
dprintf("APIVer = %04x\n", APIVer);
diff --git a/core/fs/pxe/pxe.h b/core/fs/pxe/pxe.h
index 47ed8f0..c754106 100644
--- a/core/fs/pxe/pxe.h
+++ b/core/fs/pxe/pxe.h
@@ -232,14 +232,12 @@ static inline uint32_t gateway(uint32_t ip)
/* pxe.c */
bool ip_ok(uint32_t);
-int pxe_call(int, void *);
/* dhcp_options.c */
void parse_dhcp(const void *, size_t);
/* dnsresolv.c */
int dns_mangle(char **, const char *);
-uint32_t dns_resolv(const char *);
/* idle.c */
void pxe_idle_init(void);
diff --git a/core/hello.c b/core/hello.c
index 5b22478.....