What is the name of the runtime library which implements Linux network interfaces, like sockets, tuntaps, netlink, etc...? For example when I create an UDP socket and make an ioctl call to fetch network interface info, which library actually implements that call? What are the corresponding *.so files on most linux dstirbutions?
A:
They're not all in libc, although many are. Tun/Tap has its own library, so does netlink. Basic socket operations are in libc.
Andrew McGregor
2010-01-26 00:03:06