Changeset c95ac2f3 in rtems for cpukit/libnetworking/netinet/ip_mroute.h
- Timestamp:
- 03/27/07 10:17:09 (15 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 6b4010d6
- Parents:
- d48955ea
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/libnetworking/netinet/ip_mroute.h
rd48955ea rc95ac2f3 15 15 * notice, this list of conditions and the following disclaimer in the 16 16 * documentation and/or other materials provided with the distribution. 17 * 3. All advertising materials mentioning features or use of this software18 * must display the following acknowledgement:19 * This product includes software developed by the University of20 * California, Berkeley and its contributors.21 17 * 4. Neither the name of the University nor the names of its contributors 22 18 * may be used to endorse or promote products derived from this software … … 36 32 * 37 33 * @(#)ip_mroute.h 8.1 (Berkeley) 6/10/93 34 * $FreeBSD: src/sys/netinet/ip_mroute.h,v 1.31 2007/02/08 23:05:08 bms Exp $ 35 */ 36 37 /* 38 38 * $Id$ 39 39 */ … … 49 49 * Modified by Ajit Thyagarajan, PARC, August 1993. 50 50 * Modified by Ajit Thyagarajan, PARC, August 1994. 51 * Modified by Ahmed Helmy, SGI, June 1996. 52 * Modified by Pavlin Radoslavov, ICSI, October 2002. 51 53 * 52 54 * MROUTING Revision: 3.3.1.3 55 * and PIM-SMv2 and PIM-DM support, advanced API support, 56 * bandwidth metering and signaling. 53 57 */ 54 58 … … 64 68 #define MRT_DEL_MFC 105 /* delete forwarding cache entry */ 65 69 #define MRT_VERSION 106 /* get kernel version number */ 66 #define MRT_ASSERT 107 /* enable PIM assert processing */ 70 #define MRT_ASSERT 107 /* enable assert processing */ 71 #define MRT_PIM MRT_ASSERT /* enable PIM processing */ 72 #define MRT_API_SUPPORT 109 /* supported MRT API */ 73 #define MRT_API_CONFIG 110 /* config MRT API */ 74 #define MRT_ADD_BW_UPCALL 111 /* create bandwidth monitor */ 75 #define MRT_DEL_BW_UPCALL 112 /* delete bandwidth monitor */ 67 76 68 77 … … 249 258 #ifdef _KERNEL 250 259 251 extern int (*ip_mrouter_set) __P((int, struct socket *, struct mbuf *));252 extern int (*ip_mrouter_get) __P((int, struct socket *, struct mbuf **));253 extern int (*ip_mrouter_done) __P((void));260 extern int (*ip_mrouter_set)(int, struct socket *, struct mbuf *); 261 extern int (*ip_mrouter_get)(int, struct socket *, struct mbuf **); 262 extern int (*ip_mrouter_done)(void); 254 263 #ifdef MROUTING 255 extern int (*mrt_ioctl) __P((int, caddr_t));264 extern int (*mrt_ioctl)(int, caddr_t); 256 265 #else 257 extern int (*mrt_ioctl) __P((int, caddr_t, struct proc *));266 extern int (*mrt_ioctl)(int, caddr_t, struct proc *); 258 267 #endif 259 268
Note: See TracChangeset
for help on using the changeset viewer.