* Improvements
* Implemented decoding of netlink descriptor attributes as file descriptors.
+ * Implemented decoding of option name argument of getsockopt and setsockopt
+ syscalls for SOL_NETLINK level.
* Updated the list of MSG_* constants.
Noteworthy changes in release 4.20 (2017-11-13)
#include "xlat/getsockipv6options.h"
#include "xlat/setsockipv6options.h"
#include "xlat/sockipxoptions.h"
-#include "xlat/sockrawoptions.h"
+#include "xlat/socknetlinkoptions.h"
#include "xlat/sockpacketoptions.h"
+#include "xlat/sockrawoptions.h"
#include "xlat/socksctpoptions.h"
#include "xlat/socktcpoptions.h"
case SOL_RAW:
printxval(sockrawoptions, name, "RAW_???");
break;
+ case SOL_NETLINK:
+ printxval(socknetlinkoptions, name, "NETLINK_???");
+ break;
/* Other SOL_* protocol levels still need work. */
--- /dev/null
+NETLINK_ADD_MEMBERSHIP 1
+NETLINK_DROP_MEMBERSHIP 2
+NETLINK_PKTINFO 3
+NETLINK_BROADCAST_ERROR 4
+NETLINK_NO_ENOBUFS 5
+NETLINK_RX_RING 6
+NETLINK_TX_RING 7
+NETLINK_LISTEN_ALL_NSID 8
+NETLINK_LIST_MEMBERSHIPS 9
+NETLINK_CAP_ACK 10
+NETLINK_EXT_ACK 11