File: in.h

package info (click to toggle)
openiked 7.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,896 kB
  • sloc: ansic: 34,441; yacc: 2,816; perl: 690; makefile: 635; sh: 135
file content (15 lines) | stat: -rw-r--r-- 285 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * Public domain
 * in.h compatibility shim
 */

#ifdef _MSC_VER
#elif defined(__linux__)
#ifndef IKED_COMPAT_NETINET_IN_H
#define IKED_COMPAT_NETINET_IN_H
#include_next <netinet/in.h>
#define IPPROTO_IPV4	IPPROTO_IPIP
#endif
#else /* OpenBSD */
#include_next <netinet/in.h>
#endif