1*a2f04351SSebastien Roy /*
2*a2f04351SSebastien Roy  * CDDL HEADER START
3*a2f04351SSebastien Roy  *
4*a2f04351SSebastien Roy  * This file and its contents are supplied under the terms of the
5*a2f04351SSebastien Roy  * Common Development and Distribution License ("CDDL"), version 1.0.
6*a2f04351SSebastien Roy  * You may only use this file in accordance with the terms of version
7*a2f04351SSebastien Roy  * 1.0 of the CDDL.
8*a2f04351SSebastien Roy  *
9*a2f04351SSebastien Roy  * A full copy of the text of the CDDL should have accompanied this
10*a2f04351SSebastien Roy  * source.  A copy of the CDDL is also available via the Internet at
11*a2f04351SSebastien Roy  * http://www.illumos.org/license/CDDL.
12*a2f04351SSebastien Roy  *
13*a2f04351SSebastien Roy  * CDDL HEADER END
14*a2f04351SSebastien Roy  */
15*a2f04351SSebastien Roy /*
16*a2f04351SSebastien Roy  * Copyright (c) 2015 by Delphix. All rights reserved.
17*a2f04351SSebastien Roy  */
18*a2f04351SSebastien Roy 
19*a2f04351SSebastien Roy #ifndef	_CONNSTAT_MIB_H
20*a2f04351SSebastien Roy #define	_CONNSTAT_MIB_H
21*a2f04351SSebastien Roy 
22*a2f04351SSebastien Roy #include "connstat.h"
23*a2f04351SSebastien Roy 
24*a2f04351SSebastien Roy #ifdef	__cplusplus
25*a2f04351SSebastien Roy extern "C" {
26*a2f04351SSebastien Roy #endif
27*a2f04351SSebastien Roy 
28*a2f04351SSebastien Roy int mibopen(const char *);
29*a2f04351SSebastien Roy int conn_walk(int, connstat_proto_t *, conn_walk_state_t *);
30*a2f04351SSebastien Roy 
31*a2f04351SSebastien Roy #ifdef	__cplusplus
32*a2f04351SSebastien Roy }
33*a2f04351SSebastien Roy #endif
34*a2f04351SSebastien Roy 
35*a2f04351SSebastien Roy #endif	/* _CONNSTAT_MIB_H */
36