This PR introduces an option to use lwIP's DNS resolution for getaddrinfo(), getnameinfo(), gethostbyname(), and family. It can be enabled if lwIP is available. It will enable lwIP's DNS and socket interfaces.
The advantages of this implementation is that
1) there needs to place an /etc/resolv.conf in the VFS,
2) Works with DNS servers that lwIP got assigned with a DHCP reply.
This PR introduces an option to use lwIP's DNS resolution for
getaddrinfo()
,getnameinfo()
,gethostbyname()
, and family. It can be enabled if lwIP is available. It will enable lwIP's DNS and socket interfaces. The advantages of this implementation is that 1) there needs to place an/etc/resolv.conf
in the VFS, 2) Works with DNS servers that lwIP got assigned with a DHCP reply.This PR depends on PR #48 for lib/lwip.