summaryrefslogtreecommitdiffstats
path: root/libc/inet/netlinkaccess.h
Commit message (Collapse)AuthorAgeFilesLines
* libc/inet/netlinkaccess.h: Use the types from kernelKhem Raj2011-01-011-8/+1
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* Remove all references to __no_netlink_support as after thurough scrutiny of Ricard Wanderlof2008-10-281-10/+0
| | | | the code it was never used in any useful way.
* - need to grab features before looking at eventually requested netlink supportBernhard Reutner-Fischer2008-10-201-3/+3
| | | | | | Thanks to Peter S. Mazinger for pointing out this (obvious) error. The __ASSUME_NETLINK from ricardw's r22531 references a non-existing variable in certain cases. I don't see how that could possibly work..
* - do not include netlink headers if netlink is turned off (Michael Deutschmann)Bernhard Reutner-Fischer2008-10-191-11/+10
| | | | Closes #5544
* Added support for the AI_ADDRCONFIG flag in the hints->ai_flags parameter to ↵Ricard Wanderlof2008-06-271-2/+2
| | | | getaddrinfo(3).
* add missing includes of unistd.h for smallint usageDenis Vlasenko2008-06-011-0/+1
| | | | | remove a few duplicate includes of unistd.h
* convert two more static ints used as flags to smallintsDenis Vlasenko2008-05-221-1/+1
|
* fix from psm: only define __ASSUME_NETLINK_SUPPORT if not definedMike Frysinger2006-08-241-0/+2
|
* make sure linux/types.h doesnt screw us upMike Frysinger2006-01-141-1/+9
|
* dont include linux/types.hMike Frysinger2006-01-091-1/+0
|
* Allow compiling newly added if_index.c (at least on 2.4), missing ↵Peter S. Mazinger2006-01-061-0/+1
| | | | __u32/__u16/__s32
* as weber notes in Bug 99:Mike Frysinger2006-01-061-0/+69
if_nameindex doesnt list all of my interfaces! this is because we are still using the old style ioctl(SIOCGIFINDEX) for gathering interface names/indexes. while this code is pretty small, the kernel does not return all interfaces via this method. so we import the new style netlink code from glibc and make it optional so those people who need the full functionality can get it.