OpenCores
URL https://opencores.org/ocsvn/test_project/test_project/trunk

Subversion Repositories test_project

[/] [test_project/] [trunk/] [linux_sd_driver/] [include/] [net/] [ipcomp.h] - Rev 85

Go to most recent revision | Compare with Previous | Blame | View Log

#ifndef _NET_IPCOMP_H
#define _NET_IPCOMP_H
 
#include <linux/types.h>
 
#define IPCOMP_SCRATCH_SIZE     65400
 
struct crypto_comp;
 
struct ipcomp_data {
	u16 threshold;
	struct crypto_comp **tfms;
};
 
struct ip_comp_hdr;
struct sk_buff;
 
static inline struct ip_comp_hdr *ip_comp_hdr(const struct sk_buff *skb)
{
	return (struct ip_comp_hdr *)skb_transport_header(skb);
}
 
#endif
 

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2025 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.