forked from Qortal/Brooklyn
* 0day explit mitigation * Memory corruption prevention * Privilege escalation prevention * Buffer over flow prevention * File System corruption defense * Thread escape prevention This may very well be the most intensive inclusion to BrooklynR. This will not be part of an x86 suite nor it will be released as tool kit. The security core toolkit will remain part of kernel base.
17 lines
370 B
C
17 lines
370 B
C
#ifndef _IF_TUNNEL_H_
|
|
#define _IF_TUNNEL_H_
|
|
|
|
#include <linux/ip.h>
|
|
#include <linux/in6.h>
|
|
#include <uapi/linux/if_tunnel.h>
|
|
#include <linux/u64_stats_sync.h>
|
|
|
|
/*
|
|
* Locking : hash tables are protected by RCU and RTNL
|
|
*/
|
|
|
|
#define for_each_ip_tunnel_rcu(pos, start) \
|
|
for (pos = rcu_dereference(start); pos; pos = rcu_dereference(pos->next))
|
|
|
|
#endif /* _IF_TUNNEL_H_ */
|