File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / igmpproxy / src / os-linux.h
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 17:00:29 2012 UTC (12 years, 3 months ago) by misho
Branches: igmpproxy, MAIN
CVS tags: v0_1p0, v0_1, HEAD
igmpproxy

#define _LINUX_IN_H
#include <linux/types.h>
#include <linux/mroute.h>
#include <netinet/ip.h>
#include <netinet/igmp.h>

static inline u_short ip_data_len(const struct ip *ip)
{
	return ntohs(ip->ip_len) - (ip->ip_hl << 2);
}

static inline void ip_set_len(struct ip *ip, u_short len)
{
	ip->ip_len = htons(len);
}

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>