The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/netinet/pim.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*
    2  * Copyright (c) 1996-2000
    3  * University of Southern California/Information Sciences Institute.
    4  * All rights reserved.
    5  *
    6  * Redistribution and use in source and binary forms, with or without
    7  * modification, are permitted provided that the following conditions
    8  * are met:
    9  * 1. Redistributions of source code must retain the above copyright
   10  *    notice, this list of conditions and the following disclaimer.
   11  * 2. Redistributions in binary form must reproduce the above copyright
   12  *    notice, this list of conditions and the following disclaimer in the
   13  *    documentation and/or other materials provided with the distribution.
   14  * 3. Neither the name of the project nor the names of its contributors
   15  *    may be used to endorse or promote products derived from this software
   16  *    without specific prior written permission.
   17  *
   18  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
   19  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   20  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   21  * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
   22  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
   23  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
   24  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   25  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
   26  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
   27  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   28  * SUCH DAMAGE.
   29  *
   30  * $FreeBSD: releng/5.2/sys/netinet/pim.h 118623 2003-08-07 18:17:43Z hsu $
   31  */
   32 
   33 #ifndef _NETINET_PIM_H_
   34 #define _NETINET_PIM_H_
   35 
   36 /*
   37  * Protocol Independent Multicast (PIM) definitions.
   38  * RFC 2362, June 1998.
   39  *
   40  * Written by Ahmed Helmy, USC/SGI, July 1996.
   41  * Modified by George Edmond Eddy (Rusty), ISI, February 1998.
   42  * Modified by Pavlin Radoslavov, USC/ISI, May 1998, October 2000.
   43  */
   44 
   45 #ifndef _PIM_VT
   46 #ifndef BYTE_ORDER
   47 # error BYTE_ORDER is not defined!
   48 #endif
   49 #if (BYTE_ORDER != BIG_ENDIAN) && (BYTE_ORDER != LITTLE_ENDIAN)
   50 # error BYTE_ORDER must be defined to either BIG_ENDIAN or LITTLE_ENDIAN
   51 #endif
   52 #endif /* ! _PIM_VT */
   53 
   54 /*
   55  * PIM packet header
   56  */
   57 struct pim {
   58 #ifdef _PIM_VT
   59         uint8_t         pim_vt;         /* PIM version and message type */
   60 #else /* ! _PIM_VT   */
   61 #if BYTE_ORDER == BIG_ENDIAN
   62         u_int           pim_vers:4,     /* PIM protocol version         */
   63                         pim_type:4;     /* PIM message type             */
   64 #endif
   65 #if BYTE_ORDER == LITTLE_ENDIAN
   66         u_int           pim_type:4,     /* PIM message type             */
   67                         pim_vers:4;     /* PIM protocol version         */
   68 #endif
   69 #endif /* ! _PIM_VT  */
   70         uint8_t         pim_reserved;   /* Reserved                     */
   71         uint16_t        pim_cksum;      /* IP-style checksum            */
   72 };
   73 /* KAME-related name backward compatibility */
   74 #define pim_ver pim_vers
   75 #define pim_rsv pim_reserved
   76 
   77 #ifdef _PIM_VT
   78 #define PIM_MAKE_VT(v, t)       (0xff & (((v) << 4) | (0x0f & (t))))
   79 #define PIM_VT_V(x)             (((x) >> 4) & 0x0f)
   80 #define PIM_VT_T(x)             ((x) & 0x0f)
   81 #endif /* _PIM_VT */
   82 
   83 #define PIM_VERSION             2
   84 #define PIM_MINLEN              8       /* PIM message min. length      */
   85 #define PIM_REG_MINLEN  (PIM_MINLEN+20) /* PIM Register hdr + inner IPv4 hdr */
   86 #define PIM6_REG_MINLEN (PIM_MINLEN+40) /* PIM Register hdr + inner IPv6 hdr */
   87 
   88 /*
   89  * PIM message types
   90  */
   91 #define PIM_HELLO               0x0     /* PIM-SM and PIM-DM            */
   92 #define PIM_REGISTER            0x1     /* PIM-SM only                  */
   93 #define PIM_REGISTER_STOP       0x2     /* PIM-SM only                  */
   94 #define PIM_JOIN_PRUNE          0x3     /* PIM-SM and PIM-DM            */
   95 #define PIM_BOOTSTRAP           0x4     /* PIM-SM only                  */
   96 #define PIM_ASSERT              0x5     /* PIM-SM and PIM-DM            */
   97 #define PIM_GRAFT               0x6     /* PIM-DM only                  */
   98 #define PIM_GRAFT_ACK           0x7     /* PIM-DM only                  */
   99 #define PIM_CAND_RP_ADV         0x8     /* PIM-SM only                  */
  100 #define PIM_ALL_DF_ELECTION     0xa     /* Bidir-PIM-SM only            */
  101 
  102 /*
  103  * PIM-Register message flags
  104  */
  105 #define PIM_BORDER_REGISTER 0x80000000U /* The Border bit (host-order)  */
  106 #define PIM_NULL_REGISTER   0x40000000U /* The Null-Register bit (host-order)*/
  107 
  108 /*
  109  * All-PIM-Routers IPv4 and IPv6 multicast addresses
  110  */
  111 #define INADDR_ALLPIM_ROUTERS_GROUP     (uint32_t)0xe000000dU  /* 224.0.0.13 */
  112 #define IN6ADDR_LINKLOCAL_ALLPIM_ROUTERS        "ff02::d"
  113 #define IN6ADDR_LINKLOCAL_ALLPIM_ROUTERS_INIT                           \
  114         {{{ 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,             \
  115             0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d }}}
  116 
  117 #endif /* _NETINET_PIM_H_ */

Cache object: aa869aa3bcae46d66111e10361175169


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.