xfrm.h (17c2a42a24e1e8dd6aa7cea4f84e034ab1bfff31) | xfrm.h (13996378e6585fb25e582afe7489bf52dde78deb) |
---|---|
1#ifndef _NET_XFRM_H 2#define _NET_XFRM_H 3 4#include <linux/compiler.h> 5#include <linux/xfrm.h> 6#include <linux/spinlock.h> 7#include <linux/list.h> 8#include <linux/skbuff.h> --- 172 unchanged lines hidden (view full) --- 181 struct timer_list timer; 182 183 /* Last used time */ 184 u64 lastused; 185 186 /* Reference to data common to all the instances of this 187 * transformer. */ 188 struct xfrm_type *type; | 1#ifndef _NET_XFRM_H 2#define _NET_XFRM_H 3 4#include <linux/compiler.h> 5#include <linux/xfrm.h> 6#include <linux/spinlock.h> 7#include <linux/list.h> 8#include <linux/skbuff.h> --- 172 unchanged lines hidden (view full) --- 181 struct timer_list timer; 182 183 /* Last used time */ 184 u64 lastused; 185 186 /* Reference to data common to all the instances of this 187 * transformer. */ 188 struct xfrm_type *type; |
189 struct xfrm_mode *mode; | 189 struct xfrm_mode *inner_mode; 190 struct xfrm_mode *outer_mode; |
190 191 /* Security context */ 192 struct xfrm_sec_ctx *security; 193 194 /* Private data of this transformer, format is opaque, 195 * interpreted by xfrm_type methods. */ 196 void *data; 197}; --- 1012 unchanged lines hidden --- | 191 192 /* Security context */ 193 struct xfrm_sec_ctx *security; 194 195 /* Private data of this transformer, format is opaque, 196 * interpreted by xfrm_type methods. */ 197 void *data; 198}; --- 1012 unchanged lines hidden --- |