Drop cgo usage for ifReq structure.

Signed-off-by: Dimitri John Ledkov <dimitri.j.ledkov@intel.com>
This commit is contained in:
Dimitri John Ledkov 2015-10-02 11:54:54 +01:00
parent 11eac9d2ec
commit 2838743155
1 changed files with 8 additions and 11 deletions

View File

@ -1,17 +1,14 @@
package netlink
/*
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <linux/if.h>
#include <linux/if_tun.h>
#define IFREQ_SIZE sizeof(struct ifreq)
*/
import "C"
// ideally golang.org/x/sys/unix would define IfReq but it only has
// IFNAMSIZ, hence this minimalistic implementation
const (
SizeOfIfReq = 40
IFNAMSIZ = 16
)
type ifReq struct {
Name [C.IFNAMSIZ]byte
Name [IFNAMSIZ]byte
Flags uint16
pad [C.IFREQ_SIZE - C.IFNAMSIZ - 2]byte
pad [SizeOfIfReq - IFNAMSIZ - 2]byte
}