fb11e647
vrobic
reseau statique a...
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
/*
* Copyright (C) 2016 José Ignacio Alamos <jialamos@uc.cl>
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/
/**
* @defgroup net_ppp Header
* @ingroup net_ppp_hdr
* @brief PPP header abstraction type and helper functions
* @{
*
* @file
* @brief General definitions for PPP header and their helper functions
*
* @author José Ignacio Alamos
*/
#ifndef PPP_HDR_H_
#define PPP_HDR_H_
#include <inttypes.h>
#include "byteorder.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief Header of a PPP packet
* @details A PPP packet is transmited as a payload of an HDLC packet. PPP packets only carry information about control protocol
* of a PPP stack (Link Control Protocol, IP Control Protocol, etc). IP packets encapsulated in HDLC frame are not
* considered PPP packet.
*
* The format of PPP header plus payload is:
*
*
* 0 1 2 3
* 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
* +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
* | Code | Identifier | Length |
* +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
* | Payload ...
* +-+-+-+-+
*
*
* @see <a href="https://tools.ietf.org/html/rfc1661#section-5">
* RFC 1661, section 5
* </a>
*/
/* PPP pkt header struct */
typedef struct __attribute__((packed)){
uint8_t code; /**< Code of PPP packet*/
uint8_t id; /**< Identifier PPP of packet*/
network_uint16_t length; /**< Length of PPP packet including payload*/
} ppp_hdr_t;
#ifdef __cplusplus
}
#endif
#endif /* PPP_HDR_H_ */
/** @} */
|