Skip to content

Commit

Permalink
include "ipsec6.h" for prototypes.
Browse files Browse the repository at this point in the history
  • Loading branch information
kjc committed Aug 6, 2000
1 parent f7e604a commit ebcc223
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion freebsd4/sys/netinet6/in6_pcb.c
@@ -1,5 +1,5 @@
/* $FreeBSD: src/sys/netinet6/in6_pcb.c,v 1.10.2.2 2000/07/15 07:14:33 kris Exp $ */
/* $KAME: in6_pcb.c,v 1.14 2000/08/05 13:06:02 sumikawa Exp $ */
/* $KAME: in6_pcb.c,v 1.15 2000/08/06 13:07:12 kjc Exp $ */

/*
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
Expand Down Expand Up @@ -105,6 +105,7 @@

#ifdef IPSEC
#include <netinet6/ipsec.h>
#include <netinet6/ipsec6.h>
#include <netinet6/ah.h>
#include <netkey/key.h>
#endif /* IPSEC */
Expand Down
5 changes: 4 additions & 1 deletion kame/sys/netinet6/icmp6.c
@@ -1,4 +1,4 @@
/* $KAME: icmp6.c,v 1.131 2000/08/03 15:24:34 itojun Exp $ */
/* $KAME: icmp6.c,v 1.132 2000/08/06 13:12:29 kjc Exp $ */

/*
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
Expand Down Expand Up @@ -119,6 +119,9 @@

#ifdef IPSEC
#include <netinet6/ipsec.h>
#if defined(__FreeBSD__) && __FreeBSD__ >= 4
#include <netinet6/ipsec6.h>
#endif
#include <netkey/key.h>
#endif

Expand Down

0 comments on commit ebcc223

Please sign in to comment.