File: common.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 (22 lines) | stat: -rw-r--r-- 450 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * Layer 2 Tunnelling Protocol Daemon
 * Copyright (C) 2002 Jeff McAdams
 *
 * This software is distributed under the terms of the GPL, which you
 * should have receivede along with this source.
 *
 * Defines common to several different files
 */

#ifndef _COMMON_H_
typedef unsigned char _u8;
typedef unsigned short _u16;
typedef unsigned long long _u64;
extern int rand_source;

#ifndef LINUX
# define SOL_IP 0
#endif

#define _COMMON_H_
#endif