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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
/* $OpenBSD: session.h,v 1.1 2003/12/17 11:46:54 henning Exp $ */
/*
* Copyright (c) 2003 Henning Brauer <henning@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <sys/types.h>
#define MAX_BACKLOG 5
#define INTERVAL_CONNECTRETRY 120
#define INTERVAL_HOLD_INITIAL 240
#define INTERVAL_HOLD 90
#define INTERVAL_START 90
#define MSGSIZE_HEADER 19
#define MSGSIZE_HEADER_MARKER 16
#define MSGSIZE_NOTIFICATION_MIN 21 /* 19 hdr + 1 code + 1 sub */
#define MSGSIZE_OPEN_MIN 29
#define MSGSIZE_UPDATE_MIN 23
#define MSGSIZE_KEEPALIVE MSGSIZE_HEADER
enum msg_type {
OPEN = 1,
UPDATE,
NOTIFICATION,
KEEPALIVE
};
enum err_codes {
ERR_HEADER = 1,
ERR_OPEN,
ERR_UPDATE,
ERR_HOLDTIMEREXPIRED,
ERR_FSM,
ERR_CEASE
};
enum suberr_header {
ERR_HDR_SYNC = 1,
ERR_HDR_LEN,
ERR_HDR_TYPE
};
enum suberr_open {
ERR_OPEN_VERSION = 1,
ERR_OPEN_AS,
ERR_OPEN_BGPID,
ERR_OPEN_OPT,
ERR_OPEN_AUTH,
ERR_OPEN_HOLDTIME
};
struct msg_header {
u_char marker[16];
u_int16_t len;
u_int8_t type;
};
struct msg_open {
struct msg_header header;
u_int8_t version;
u_int16_t myas;
u_int16_t holdtime;
u_int32_t bgpid;
u_int8_t optparamlen;
};
struct msg_notification {
struct msg_header header;
u_int8_t errcode;
u_int8_t subcode;
};
struct msg_keepalive {
struct msg_header header;
};
struct msg_update {
struct msg_header header;
u_int16_t withdrawn_len;
char *withdrawn_data;
u_int16_t path_len;
char *path_data;
char *nlri; /* Network Layer Reachability Info */
};
|