ipv6.h revision 499b34cea04a46823d003d4c0520c8b03e8513cb
499b34cea04a46823d003d4c0520c8b03e8513cbBrian Wellington * Copyright (C) 1999-2001 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.
15a44745412679c30a6d022733925af70a38b715David Lawrence * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM
15a44745412679c30a6d022733925af70a38b715David Lawrence * DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
15a44745412679c30a6d022733925af70a38b715David Lawrence * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
15a44745412679c30a6d022733925af70a38b715David Lawrence * INTERNET SOFTWARE CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT,
15a44745412679c30a6d022733925af70a38b715David Lawrence * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
15a44745412679c30a6d022733925af70a38b715David Lawrence * FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
15a44745412679c30a6d022733925af70a38b715David Lawrence * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
15a44745412679c30a6d022733925af70a38b715David Lawrence * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
499b34cea04a46823d003d4c0520c8b03e8513cbBrian Wellington/* $Id: ipv6.h,v 1.17 2001/01/09 21:57:02 bwelling 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 */