ipv6.c revision ec5347e2c775f027573ce5648b910361aa926c01
7e8c1a13e97448db2ec17d05c4917939a12aa9c0Mark Andrews/*
0c27b3fe77ac1d5094ba3521e8142d9e7973133fMark Andrews * Copyright (C) 2004 Internet Systems Consortium, Inc. ("ISC")
7e8c1a13e97448db2ec17d05c4917939a12aa9c0Mark Andrews * Copyright (C) 1999-2001 Internet Software Consortium.
0c27b3fe77ac1d5094ba3521e8142d9e7973133fMark Andrews *
0c27b3fe77ac1d5094ba3521e8142d9e7973133fMark Andrews * Permission to use, copy, modify, and/or distribute this software for any
0c27b3fe77ac1d5094ba3521e8142d9e7973133fMark Andrews * purpose with or without fee is hereby granted, provided that the above
7e8c1a13e97448db2ec17d05c4917939a12aa9c0Mark Andrews * copyright notice and this permission notice appear in all copies.
7e8c1a13e97448db2ec17d05c4917939a12aa9c0Mark Andrews *
c1aef54e14bb92518b1c062ba8c0292a7cb949cbAutomatic Updater * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
ab023a65562e62b85a824509d829b6fad87e00b1Rob Austein * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
ab023a65562e62b85a824509d829b6fad87e00b1Rob Austein * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
7e8c1a13e97448db2ec17d05c4917939a12aa9c0Mark Andrews * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
7e8c1a13e97448db2ec17d05c4917939a12aa9c0Mark Andrews * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
7e8c1a13e97448db2ec17d05c4917939a12aa9c0Mark Andrews * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
7e8c1a13e97448db2ec17d05c4917939a12aa9c0Mark Andrews * PERFORMANCE OF THIS SOFTWARE.
7e8c1a13e97448db2ec17d05c4917939a12aa9c0Mark Andrews */
b1b3495eba72ea2b7270c5cd62b0bb824de74e05Mark Andrews
7e8c1a13e97448db2ec17d05c4917939a12aa9c0Mark Andrews/* $Id: ipv6.c,v 1.7 2007/06/18 23:47:49 tbox Exp $ */
b1b3495eba72ea2b7270c5cd62b0bb824de74e05Mark Andrews
b1b3495eba72ea2b7270c5cd62b0bb824de74e05Mark Andrews#include <isc/net.h>
77b101ced9801cdb226919784bfc1aa0650ace6aMark Andrews#include <isc/platform.h>
77b101ced9801cdb226919784bfc1aa0650ace6aMark Andrews
8d0ee7a153381d98f6c1e6e9bfe6b73659433666Brian WellingtonLIBISC_EXTERNAL_DATA const struct in6_addr isc_in6addr_any =
7e8c1a13e97448db2ec17d05c4917939a12aa9c0Mark Andrews IN6ADDR_ANY_INIT;
3759f10fc543747668b1ca4b4671f35b0dea8445Francis Dupont
b1b3495eba72ea2b7270c5cd62b0bb824de74e05Mark AndrewsLIBISC_EXTERNAL_DATA const struct in6_addr isc_in6addr_loopback =
7e8c1a13e97448db2ec17d05c4917939a12aa9c0Mark Andrews IN6ADDR_LOOPBACK_INIT;
7e8c1a13e97448db2ec17d05c4917939a12aa9c0Mark Andrews