Deleted Added
full compact
in6_proto.c (163953) in6_proto.c (166938)
1/* $FreeBSD: head/sys/netinet6/in6_proto.c 163953 2006-11-03 15:23:16Z rrs $ */
1/* $FreeBSD: head/sys/netinet6/in6_proto.c 166938 2007-02-24 11:38:47Z bms $ */
2/* $KAME: in6_proto.c,v 1.91 2001/05/27 13:28:35 itojun Exp $ */
3
4/*-
5 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions

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

330 .pr_init = encap_init,
331 .pr_usrreqs = &rip6_usrreqs
332},
333{
334 .pr_type = SOCK_RAW,
335 .pr_domain = &inet6domain,
336 .pr_protocol = IPPROTO_PIM,
337 .pr_flags = PR_ATOMIC|PR_ADDR|PR_LASTHDR,
2/* $KAME: in6_proto.c,v 1.91 2001/05/27 13:28:35 itojun Exp $ */
3
4/*-
5 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions

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

330 .pr_init = encap_init,
331 .pr_usrreqs = &rip6_usrreqs
332},
333{
334 .pr_type = SOCK_RAW,
335 .pr_domain = &inet6domain,
336 .pr_protocol = IPPROTO_PIM,
337 .pr_flags = PR_ATOMIC|PR_ADDR|PR_LASTHDR,
338 .pr_input = pim6_input,
338 .pr_input = encap6_input,
339 .pr_output = rip6_output,
340 .pr_ctloutput = rip6_ctloutput,
341 .pr_usrreqs = &rip6_usrreqs
342},
343#ifdef DEV_CARP
344{
345 .pr_type = SOCK_RAW,
346 .pr_domain = &inet6domain,

--- 247 unchanged lines hidden ---
339 .pr_output = rip6_output,
340 .pr_ctloutput = rip6_ctloutput,
341 .pr_usrreqs = &rip6_usrreqs
342},
343#ifdef DEV_CARP
344{
345 .pr_type = SOCK_RAW,
346 .pr_domain = &inet6domain,

--- 247 unchanged lines hidden ---