shared: Add struct sockaddr_ll to sockaddr_union

This commit is contained in:
Patrik Flykt 2013-12-09 23:43:17 +02:00 committed by Zbigniew Jędrzejewski-Szmek
parent 39b7f59600
commit e88bc7958c

View file

@ -27,6 +27,7 @@
#include <net/if.h>
#include <asm/types.h>
#include <linux/netlink.h>
#include <linux/if_packet.h>
#include "macro.h"
#include "util.h"
@ -38,6 +39,7 @@ union sockaddr_union {
struct sockaddr_un un;
struct sockaddr_nl nl;
struct sockaddr_storage storage;
struct sockaddr_ll ll;
};
typedef struct SocketAddress {