2008-11-26 09:14:31 +08:00
|
|
|
#ifndef __NETNS_XFRM_H
|
|
|
|
#define __NETNS_XFRM_H
|
|
|
|
|
2008-11-26 09:16:11 +08:00
|
|
|
#include <linux/list.h>
|
|
|
|
|
2008-11-26 09:14:31 +08:00
|
|
|
struct netns_xfrm {
|
2008-11-26 09:16:11 +08:00
|
|
|
struct list_head state_all;
|
2008-11-26 09:16:58 +08: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 09:14:31 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|