2017-11-01 15:07:57 +01:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2005-04-16 15:20:36 -07:00
|
|
|
#ifndef _NET_IPCOMP_H
|
|
|
|
|
#define _NET_IPCOMP_H
|
|
|
|
|
|
2022-07-20 16:57:58 -07:00
|
|
|
#include <linux/skbuff.h>
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2007-10-10 15:45:25 -07:00
|
|
|
struct ip_comp_hdr;
|
2025-03-15 18:30:43 +08:00
|
|
|
struct netlink_ext_ack;
|
2008-07-25 02:54:40 -07:00
|
|
|
struct xfrm_state;
|
|
|
|
|
|
|
|
|
|
int ipcomp_input(struct xfrm_state *x, struct sk_buff *skb);
|
|
|
|
|
int ipcomp_output(struct xfrm_state *x, struct sk_buff *skb);
|
|
|
|
|
void ipcomp_destroy(struct xfrm_state *x);
|
2022-09-27 17:45:33 +02:00
|
|
|
int ipcomp_init_state(struct xfrm_state *x, struct netlink_ext_ack *extack);
|
2007-10-10 15:45:25 -07:00
|
|
|
|
|
|
|
|
static inline struct ip_comp_hdr *ip_comp_hdr(const struct sk_buff *skb)
|
|
|
|
|
{
|
|
|
|
|
return (struct ip_comp_hdr *)skb_transport_header(skb);
|
|
|
|
|
}
|
|
|
|
|
|
2005-04-16 15:20:36 -07:00
|
|
|
#endif
|