Loading...
Searching...
No Matches
ppptype.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2016 José Ignacio Alamos
3 * SPDX-License-Identifier: LGPL-2.1-only
4 */
5
6#pragma once
7
24
25#ifdef __cplusplus
26extern "C" {
27#endif
28
29#define PPPTYPE_IPV6 (0x0057)
30#define PPPTYPE_IPV4 (0x0021)
31#define PPPTYPE_NCP_IPV6 (0x8057)
32#define PPPTYPE_NCP_IPV4 (0x8021)
33#define PPPTYPE_LCP (0xC021)
34#define PPPTYPE_PAP (0xC023)
35#define PPPTYPE_UNKNOWN (0x8001)
36
37#ifdef __cplusplus
38}
39#endif
40