Note both my contribution and NSF funding.

This commit is contained in:
dyoung 2008-05-15 04:03:53 +00:00
parent dba9c5c1c8
commit ab6934acf9
2 changed files with 15 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: if_gre.c,v 1.133 2008/05/15 01:30:48 dyoung Exp $ */
/* $NetBSD: if_gre.c,v 1.134 2008/05/15 04:03:53 dyoung Exp $ */
/*
* Copyright (c) 1998, 2008 The NetBSD Foundation, Inc.
@ -9,6 +9,8 @@
*
* IPv6-over-GRE contributed by Gert Doering <gert@greenie.muc.de>
*
* GRE over UDP/IPv4/IPv6 sockets contributed by David Young <dyoung@NetBSD.org>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
@ -29,6 +31,9 @@
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
* This material is based upon work partially supported by NSF
* under Contract No. NSF CNS-0626584.
*/
/*
@ -40,7 +45,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: if_gre.c,v 1.133 2008/05/15 01:30:48 dyoung Exp $");
__KERNEL_RCSID(0, "$NetBSD: if_gre.c,v 1.134 2008/05/15 04:03:53 dyoung Exp $");
#include "opt_gre.h"
#include "opt_inet.h"

View File

@ -1,12 +1,15 @@
/* $NetBSD: if_gre.h,v 1.37 2008/05/09 20:14:07 dyoung Exp $ */
/* $NetBSD: if_gre.h,v 1.38 2008/05/15 04:03:53 dyoung Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
* Copyright (c) 1998, 2008 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Heiko W.Rupp <hwr@pilhuhn.de>
*
* This code is derived from software contributed to The NetBSD Foundation
* by David Young <dyoung@NetBSD.org>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
@ -27,6 +30,9 @@
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
* This material is based upon work partially supported by NSF
* under Contract No. NSF CNS-0626584.
*/
#ifndef _NET_IF_GRE_H_