2008-11-26 02:14:31 +01:00
|
|
|
#ifndef __NETNS_XFRM_H
|
|
|
|
#define __NETNS_XFRM_H
|
|
|
|
|
2008-11-26 02:16:11 +01:00
|
|
|
#include <linux/list.h>
|
|
|
|
|
2008-11-26 02:14:31 +01:00
|
|
|
struct netns_xfrm {
|
2008-11-26 02:16:11 +01:00
|
|
|
struct list_head state_all;
|
2008-11-26 02:16:58 +01:00
|
|
|
/*
|
|
|
|
* Hash table to find appropriate SA towards given target (endpoint of
|
|
|
|
* tunnel or destination of transport mode) allowed by selector.
|
|
|
|
*
|
|
|
|
* Main use is finding SA after policy selected tunnel or transport
|
|
|
|
* mode. Also, it can be used by ah/esp icmp error handler to find
|
|
|
|
* offending SA.
|
|
|
|
*/
|
|
|
|
struct hlist_head *state_bydst;
|
2008-11-26 02:17:24 +01:00
|
|
|
struct hlist_head *state_bysrc;
|
2008-11-26 02:17:47 +01:00
|
|
|
struct hlist_head *state_byspi;
|
2008-11-26 02:18:12 +01:00
|
|
|
unsigned int state_hmask;
|
2008-11-26 02:18:39 +01:00
|
|
|
unsigned int state_num;
|
2008-11-26 02:14:31 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|