routed.h (2c62730a) routed.h (2cca9f8f)
1/*-
2 * Copyright (c) 1983, 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
1/*-
2 * Copyright (c) 1983, 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgment:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
13 * 3. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)routed.h 8.1 (Berkeley) 6/2/93
34 *
35 * $FreeBSD$
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * @(#)routed.h 8.1 (Berkeley) 6/2/93
30 *
31 * $FreeBSD$
32 * $Revision: 2.26 $
36 */
37
38#ifndef _ROUTED_H_
39#define _ROUTED_H_
40#ifdef __cplusplus
41extern "C" {
42#endif
43

--- 49 unchanged lines hidden (view full) ---

93#define RIP_AUTH_PW_LEN 16
94 u_int8_t au_pw[RIP_AUTH_PW_LEN];
95 struct a_md5 {
96 int16_t md5_pkt_len; /* RIP-II packet length */
97 int8_t md5_keyid; /* key ID and auth data len */
98 int8_t md5_auth_len; /* 16 */
99 u_int32_t md5_seqno; /* sequence number */
100 u_int32_t rsvd[2]; /* must be 0 */
33 */
34
35#ifndef _ROUTED_H_
36#define _ROUTED_H_
37#ifdef __cplusplus
38extern "C" {
39#endif
40

--- 49 unchanged lines hidden (view full) ---

90#define RIP_AUTH_PW_LEN 16
91 u_int8_t au_pw[RIP_AUTH_PW_LEN];
92 struct a_md5 {
93 int16_t md5_pkt_len; /* RIP-II packet length */
94 int8_t md5_keyid; /* key ID and auth data len */
95 int8_t md5_auth_len; /* 16 */
96 u_int32_t md5_seqno; /* sequence number */
97 u_int32_t rsvd[2]; /* must be 0 */
101#define RIP_AUTH_MD5_LEN RIP_AUTH_PW_LEN
98#define RIP_AUTH_MD5_KEY_LEN RIP_AUTH_PW_LEN
99#define RIP_AUTH_MD5_HASH_XTRA (sizeof(struct netauth)-sizeof(struct a_md5))
100#define RIP_AUTH_MD5_HASH_LEN (RIP_AUTH_MD5_KEY_LEN+RIP_AUTH_MD5_HASH_XTRA)
102 } a_md5;
103 } au;
104};
105
106struct rip {
107 u_int8_t rip_cmd; /* request/response */
108 u_int8_t rip_vers; /* protocol version # */
109 u_int16_t rip_res1; /* pad to 32-bit boundary */

--- 64 unchanged lines hidden ---
101 } a_md5;
102 } au;
103};
104
105struct rip {
106 u_int8_t rip_cmd; /* request/response */
107 u_int8_t rip_vers; /* protocol version # */
108 u_int16_t rip_res1; /* pad to 32-bit boundary */

--- 64 unchanged lines hidden ---