10SN/A/*
22362SN/A * util/as112.c - list of local zones.
30SN/A *
40SN/A * Copyright (c) 2007, NLnet Labs. All rights reserved.
50SN/A *
60SN/A * This software is open source.
72362SN/A *
80SN/A * Redistribution and use in source and binary forms, with or without
92362SN/A * modification, are permitted provided that the following conditions
100SN/A * are met:
110SN/A *
120SN/A * Redistributions of source code must retain the above copyright notice,
130SN/A * this list of conditions and the following disclaimer.
140SN/A *
150SN/A * Redistributions in binary form must reproduce the above copyright notice,
160SN/A * this list of conditions and the following disclaimer in the documentation
170SN/A * and/or other materials provided with the distribution.
180SN/A *
190SN/A * Neither the name of the NLNET LABS nor the names of its contributors may
200SN/A * be used to endorse or promote products derived from this software without
212362SN/A * specific prior written permission.
222362SN/A *
232362SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
240SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
250SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
260SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
270SN/A * HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
280SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
290SN/A * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
300SN/A * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
310SN/A * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
320SN/A * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
330SN/A * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
340SN/A */
350SN/A
360SN/A/**
370SN/A * \file
380SN/A *
390SN/A * This file provides a list of lan zones
400SN/A */
410SN/A
420SN/A#ifndef UTIL_AS112_H
430SN/A#define UTIL_AS112_H
440SN/A
450SN/A/**
460SN/A * Array of text-format domain names of the AS112 zones.
470SN/A * The array ends with NULL.  "AS112" is a service on the internet that
480SN/A * that this array is named after.  The names in this list (or some of them)
490SN/A * are null-routed by this service to avoid load on central servers caused by
500SN/A * mistaken lookups for local content on the global internet.
510SN/A *
520SN/A * This is the list of names that unbound should not normally be sending
530SN/A * on towards the internet, because they are local-use.
540SN/A */
550SN/Aextern const char** as112_zones;
560SN/A
570SN/A#endif
580SN/A