File: ipsecmast.h

package info (click to toggle)
xl2tpd 1.3.18-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 6,616 kB
  • sloc: ansic: 9,991; sh: 303; makefile: 146; cpp: 126
file content (17 lines) | stat: -rw-r--r-- 322 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef _IPSECMAST_H
#define _IPSECMAST_H

#ifndef IP_IPSEC_REFINFO
/* 22 has been assigned to IP_NODEFRAG in 2.6.36+ so we moved to 30
 * #define IP_IPSEC_REFINFO 22
 */
#define IP_IPSEC_REFINFO 30
#endif

#ifndef IPSEC_SAREF_NULL
typedef uint32_t IPsecSAref_t;

#define IPSEC_SAREF_NULL ((IPsecSAref_t)0)
#endif

#endif