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 RFC 3376: 4.1.7. QQIC (Querier's Query Interval Code)
32 If QQIC < 128, QQI = QQIC
33 If QQIC >= 128, QQI = (mant | 0x10) << (exp + 3)
40 Since exp=0..7 then (exp+3)=3..10, then QQI has
41 one of the following bit patterns:
43 exp=0: QQI = 0000.0000.1MMM.M000
44 exp=1: QQI = 0000.0001.MMMM.0000
46 exp=6: QQI = 001M.MMM0.0000.0000
47 exp=7: QQI = 01MM.MM00.0000.0000
51 uint8_t igmp_msg_encode16to8(uint16_t value)
59 uint16_t mask = 0x4000;
62 for (exp = 7; exp > 0; --exp) {
67 mant = 0x000F & (value >> (exp + 3));
68 code = ((uint8_t) 1 << 7) | ((uint8_t) exp << 4) | (uint8_t) mant;
75 RFC 3376: 4.1.7. QQIC (Querier's Query Interval Code)
77 If QQIC < 128, QQI = QQIC
78 If QQIC >= 128, QQI = (mant | 0x10) << (exp + 3)
85 uint16_t igmp_msg_decode8to16(uint8_t code)
93 uint16_t mant = (code & 0x0F);
94 uint8_t exp = (code & 0x70) >> 4;
95 value = (mant | 0x10) << (exp + 3);
101 void pim_pkt_dump(const char *label, const uint8_t *buf, int size)
107 for (; i < size; ++i, j += 2) {
108 int left = sizeof(dump_buf) - j;
111 strcat(dump_buf + j, "!"); /* mark as truncated */
115 snprintf(dump_buf + j, left, "%02x", buf[i]);
118 zlog_debug("%s: pkt dump size=%d: %s",