137142Sbrian/*-
237142Sbrian * Copyright (c) 1998 Brian Somers <brian@Awfulhak.org>
337142Sbrian * All rights reserved.
437142Sbrian *
537142Sbrian * Redistribution and use in source and binary forms, with or without
637142Sbrian * modification, are permitted provided that the following conditions
737142Sbrian * are met:
837142Sbrian * 1. Redistributions of source code must retain the above copyright
937142Sbrian *    notice, this list of conditions and the following disclaimer.
1037142Sbrian * 2. Redistributions in binary form must reproduce the above copyright
1137142Sbrian *    notice, this list of conditions and the following disclaimer in the
1237142Sbrian *    documentation and/or other materials provided with the distribution.
1337142Sbrian *
1437142Sbrian * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
1537142Sbrian * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1637142Sbrian * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1737142Sbrian * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
1837142Sbrian * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1937142Sbrian * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2037142Sbrian * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2137142Sbrian * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2237142Sbrian * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2337142Sbrian * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2437142Sbrian * SUCH DAMAGE.
2537142Sbrian *
2650479Speter * $FreeBSD$
2737142Sbrian */
2837142Sbrian
2937142Sbrianstruct probe {
3037142Sbrian  unsigned select_changes_time : 1;
3181697Sbrian#ifndef NOINET6
3281697Sbrian  unsigned ipv6_available : 1;
3381697Sbrian#endif
3437142Sbrian};
3537142Sbrian
3681697Sbrianextern struct probe probe;
3781697Sbrian
3881697Sbrianextern void probe_Init(void);
39