198038Sache/*-
298038Sache * SPDX-License-Identifier: BSD-2-Clause
398038Sache *
498038Sache * Copyright (c) 1998 Brian Somers <brian@Awfulhak.org>
598038Sache * All rights reserved.
698038Sache *
798038Sache * Redistribution and use in source and binary forms, with or without
898038Sache * modification, are permitted provided that the following conditions
998038Sache * are met:
1098038Sache * 1. Redistributions of source code must retain the above copyright
1198038Sache *    notice, this list of conditions and the following disclaimer.
1298038Sache * 2. Redistributions in binary form must reproduce the above copyright
1398038Sache *    notice, this list of conditions and the following disclaimer in the
1498038Sache *    documentation and/or other materials provided with the distribution.
1598038Sache *
1698038Sache * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
1798038Sache * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1898038Sache * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1998038Sache * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
2098038Sache * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2198038Sache * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2298038Sache * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2398038Sache * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2498038Sache * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2598038Sache * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2698038Sache * SUCH DAMAGE.
2798038Sache */
2898038Sache
2998038Sachestruct probe {
3098038Sache  unsigned select_changes_time : 1;
3198038Sache#ifndef NOINET6
3298038Sache  unsigned ipv6_available : 1;
3398038Sache#endif
3498038Sache};
3598038Sache
3698038Sacheextern struct probe probe;
3798038Sache
3898038Sacheextern void probe_Init(void);
3998038Sache