3 Copyright (C) 2008 Everton da Silva Marques
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; see the file COPYING; if not, write to the
17 Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
20 $QuaggaId: $Format:%an, %ai, %h$ $
30 void pim_msg_build_header(uint8_t *pim_msg, int pim_msg_size,
35 zassert(pim_msg_size >= PIM_PIM_MIN_LEN);
41 *(uint8_t *) PIM_MSG_HDR_OFFSET_VERSION(pim_msg) = (PIM_PROTO_VERSION << 4) | pim_msg_type;
42 *(uint8_t *) PIM_MSG_HDR_OFFSET_RESERVED(pim_msg) = 0;
48 *(uint16_t *) PIM_MSG_HDR_OFFSET_CHECKSUM(pim_msg) = 0;
49 checksum = in_cksum(pim_msg, pim_msg_size);
50 *(uint16_t *) PIM_MSG_HDR_OFFSET_CHECKSUM(pim_msg) = checksum;
53 uint8_t *pim_msg_addr_encode_ipv4_ucast(uint8_t *buf,
57 const int ENCODED_IPV4_UCAST_SIZE = 6;
59 if (buf_size < ENCODED_IPV4_UCAST_SIZE) {
63 buf[0] = PIM_MSG_ADDRESS_FAMILY_IPV4; /* addr family */
64 buf[1] = '\0'; /* native encoding */
65 memcpy(buf+2, &addr, sizeof(struct in_addr));
67 return buf + ENCODED_IPV4_UCAST_SIZE;
70 uint8_t *pim_msg_addr_encode_ipv4_group(uint8_t *buf,
74 const int ENCODED_IPV4_GROUP_SIZE = 8;
76 if (buf_size < ENCODED_IPV4_GROUP_SIZE) {
80 buf[0] = PIM_MSG_ADDRESS_FAMILY_IPV4; /* addr family */
81 buf[1] = '\0'; /* native encoding */
82 buf[2] = '\0'; /* reserved */
83 buf[3] = 32; /* mask len */
84 memcpy(buf+4, &addr, sizeof(struct in_addr));
86 return buf + ENCODED_IPV4_GROUP_SIZE;
89 uint8_t *pim_msg_addr_encode_ipv4_source(uint8_t *buf,
93 const int ENCODED_IPV4_SOURCE_SIZE = 8;
95 if (buf_size < ENCODED_IPV4_SOURCE_SIZE) {
99 buf[0] = PIM_MSG_ADDRESS_FAMILY_IPV4; /* addr family */
100 buf[1] = '\0'; /* native encoding */
101 buf[2] = 4; /* reserved = 0 | S bit = 1 | W bit = 0 | R bit = 0 */
102 buf[3] = 32; /* mask len */
103 memcpy(buf+4, &addr, sizeof(struct in_addr));
105 return buf + ENCODED_IPV4_SOURCE_SIZE;