ipv6.h revision de8e189332e884db065b921f84e3ee4922ad10e3
ca41b452ede6feaa9d8739ec3cae19389a7b0d03Bob Halley * Copyright (C) 1999, 2000 Internet Software Consortium.
9679032ec8ea97edcc993deb3d3dfcf54655cb52Bob Halley * Permission to use, copy, modify, and distribute this software for any
9679032ec8ea97edcc993deb3d3dfcf54655cb52Bob Halley * purpose with or without fee is hereby granted, provided that the above
9679032ec8ea97edcc993deb3d3dfcf54655cb52Bob Halley * copyright notice and this permission notice appear in all copies.
9679032ec8ea97edcc993deb3d3dfcf54655cb52Bob Halley * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
9679032ec8ea97edcc993deb3d3dfcf54655cb52Bob Halley * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
9679032ec8ea97edcc993deb3d3dfcf54655cb52Bob Halley * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
9679032ec8ea97edcc993deb3d3dfcf54655cb52Bob Halley * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
9679032ec8ea97edcc993deb3d3dfcf54655cb52Bob Halley * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
9679032ec8ea97edcc993deb3d3dfcf54655cb52Bob Halley * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
9679032ec8ea97edcc993deb3d3dfcf54655cb52Bob Halley * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
de8e189332e884db065b921f84e3ee4922ad10e3David Lawrence/* $Id: ipv6.h,v 1.14 2000/07/01 01:41:53 tale Exp $ */
de8e189332e884db065b921f84e3ee4922ad10e3David Lawrence * Also define LWRES_IPV6_H to keep it from being included if liblwres is
de8e189332e884db065b921f84e3ee4922ad10e3David Lawrence * being used, or redefinition errors will occur.
9679032ec8ea97edcc993deb3d3dfcf54655cb52Bob Halley ***** Module Info
9679032ec8ea97edcc993deb3d3dfcf54655cb52Bob Halley * IPv6 definitions for systems which do not support IPv6.
9679032ec8ea97edcc993deb3d3dfcf54655cb52Bob Halley * No impact.
9679032ec8ea97edcc993deb3d3dfcf54655cb52Bob Halley * Reliability:
9679032ec8ea97edcc993deb3d3dfcf54655cb52Bob Halley * No anticipated impact.
9679032ec8ea97edcc993deb3d3dfcf54655cb52Bob Halley * Resources:
9679032ec8ea97edcc993deb3d3dfcf54655cb52Bob Halley * No anticipated impact.
9679032ec8ea97edcc993deb3d3dfcf54655cb52Bob Halley * Standards:
9679032ec8ea97edcc993deb3d3dfcf54655cb52Bob Halley *** Imports.
705a1d752e32d89efc787e1f25d51777565afbc4Bob Halley#define IN6ADDR_ANY_INIT {{{ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 }}}
705a1d752e32d89efc787e1f25d51777565afbc4Bob Halley#define IN6ADDR_LOOPBACK_INIT {{{ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 }}}
443ad8c09c31634a21ef73794aca32594543829dMichael Graff * Unspecified
443ad8c09c31634a21ef73794aca32594543829dMichael Graff (((a)->s6_addr32[0] == 0) && \
443ad8c09c31634a21ef73794aca32594543829dMichael Graff (((a)->s6_addr32[0] == 0) && \
443ad8c09c31634a21ef73794aca32594543829dMichael Graff * IPv4 compatible
443ad8c09c31634a21ef73794aca32594543829dMichael Graff (((a)->s6_addr32[0] == 0) && \
443ad8c09c31634a21ef73794aca32594543829dMichael Graff (((a)->s6_addr32[0] == 0) && \
9679032ec8ea97edcc993deb3d3dfcf54655cb52Bob Halley#endif /* ISC_IPV6_H */