xref: /freebsd/contrib/bsnmp/snmpd/trans_inet.h (revision 9a696dc6bb0e8e783dfd169c8299e1f33aac2935)
1*04d17814SAndrey V. Elsukov /*
2*04d17814SAndrey V. Elsukov  * Copyright (c) 2018
3*04d17814SAndrey V. Elsukov  *	Hartmut Brandt.
4*04d17814SAndrey V. Elsukov  *	All rights reserved.
5*04d17814SAndrey V. Elsukov  *
6*04d17814SAndrey V. Elsukov  * Author: Harti Brandt <harti@freebsd.org>
7*04d17814SAndrey V. Elsukov  *
8*04d17814SAndrey V. Elsukov  * Redistribution and use in source and binary forms, with or without
9*04d17814SAndrey V. Elsukov  * modification, are permitted provided that the following conditions
10*04d17814SAndrey V. Elsukov  * are met:
11*04d17814SAndrey V. Elsukov  * 1. Redistributions of source code must retain the above copyright
12*04d17814SAndrey V. Elsukov  *    notice, this list of conditions and the following disclaimer.
13*04d17814SAndrey V. Elsukov  * 2. Redistributions in binary form must reproduce the above copyright
14*04d17814SAndrey V. Elsukov  *    notice, this list of conditions and the following disclaimer in the
15*04d17814SAndrey V. Elsukov  *    documentation and/or other materials provided with the distribution.
16*04d17814SAndrey V. Elsukov  *
17*04d17814SAndrey V. Elsukov  * THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18*04d17814SAndrey V. Elsukov  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19*04d17814SAndrey V. Elsukov  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20*04d17814SAndrey V. Elsukov  * ARE DISCLAIMED.  IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
21*04d17814SAndrey V. Elsukov  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22*04d17814SAndrey V. Elsukov  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23*04d17814SAndrey V. Elsukov  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24*04d17814SAndrey V. Elsukov  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25*04d17814SAndrey V. Elsukov  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26*04d17814SAndrey V. Elsukov  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27*04d17814SAndrey V. Elsukov  * SUCH DAMAGE.
28*04d17814SAndrey V. Elsukov  *
29*04d17814SAndrey V. Elsukov  * $Id$
30*04d17814SAndrey V. Elsukov  */
31*04d17814SAndrey V. Elsukov 
32*04d17814SAndrey V. Elsukov #ifndef trans_inet_h_1530971397
33*04d17814SAndrey V. Elsukov #define trans_inet_h_1530971397
34*04d17814SAndrey V. Elsukov 
35*04d17814SAndrey V. Elsukov /* transport declaration */
36*04d17814SAndrey V. Elsukov extern const struct transport_def inet_trans;
37*04d17814SAndrey V. Elsukov 
38*04d17814SAndrey V. Elsukov #endif
39