1 #ifndef _DHCPV6_PXE_H_ 2 #define _DHCPV6_PXE_H_ 3 4 #include <unistd.h> 5 #include <stddef.h> 6 7 // The detail is hidden except for dhcpv6-pxe.c 8 struct ipv6_pxe_entry; 9 10 const struct ipv6_pxe_entry* ipv6_pxe_entry_new(uint32_t arch, const char* url); 11 const struct ipv6_pxe_entry* ipv6_pxe_of_arch(uint16_t arch); 12 void ipv6_pxe_serve_boot_url(uint16_t arch, struct iovec* iov); 13 void ipv6_pxe_dump(void); 14 void ipv6_pxe_clear(void); 15 16 #endif /* _DHCPV6_PXE_H_ */ 17
This page was automatically generated by LXR 0.3.1. • OpenWrt