https://github.com/torvalds/linux
Raw File
Tip revision: 206c5f60a3d902bc4b56dab2de3e88de5eb06108 authored by Linus Torvalds on 09 November 2014, 22:55:29 UTC
Linux 3.18-rc4
Tip revision: 206c5f6
gue.h
#ifndef __NET_GUE_H
#define __NET_GUE_H

struct guehdr {
	union {
		struct {
#if defined(__LITTLE_ENDIAN_BITFIELD)
			__u8	hlen:4,
			version:4;
#elif defined (__BIG_ENDIAN_BITFIELD)
			__u8	version:4,
				hlen:4;
#else
#error  "Please fix <asm/byteorder.h>"
#endif
			__u8    next_hdr;
			__u16   flags;
		};
		__u32 word;
	};
};

#endif
back to top