1/*
2 * Copyright (c) 2001-2003
3 *	Fraunhofer Institute for Open Communication Systems (FhG Fokus).
4 * 	All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 *    notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 *    notice, this list of conditions and the following disclaimer in the
13 *    documentation and/or other materials provided with the distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 *
27 * Author: Hartmut Brandt <harti@freebsd.org>
28 *
29 * $FreeBSD$
30 */
31#ifndef _ATMCONFIG_H
32#define	_ATMCONFIG_H
33
34#include <sys/types.h>
35#include <sys/socket.h>
36#include <sys/queue.h>
37#include <netgraph/ng_message.h>
38
39#define	DEFAULT_INTERFACE	"hatm0"
40
41struct cmdtab {
42	const char	*string;
43	const struct cmdtab *sub;
44	void		(*func)(int, char *[]);
45};
46
47/*
48 * client configuration info
49 */
50struct amodule {
51	const struct cmdtab	*cmd;
52};
53
54#define	DEF_MODULE(CMDTAB)				\
55struct amodule amodule_1 = { CMDTAB }
56
57/* for compiled-in modules */
58void	register_module(const struct amodule *);
59
60/* print a message if we are verbose */
61void	verb(const char *, ...) __printflike(1, 2);
62
63/* print heading */
64void	heading(const char *, ...) __printflike(1, 2);
65
66/* before starting output */
67void	heading_init(void);
68
69/* stringify an enumerated value */
70struct penum {
71	int32_t	value;
72	const char *str;
73};
74const char *penum(int32_t value, const struct penum *strtab, char *buf);
75int pparse(int32_t *, const struct penum *, const char *);
76
77enum {
78	OPT_NONE,
79	OPT_UINT,
80	OPT_INT,
81	OPT_UINT32,
82	OPT_INT32,
83	OPT_UINT64,
84	OPT_INT64,
85	OPT_FLAG,
86	OPT_VCI,
87	OPT_STRING,
88	OPT_SIMPLE,
89};
90struct option {
91	const char *optstr;
92	int	opttype;
93	void	*optarg;
94};
95
96int parse_options(int *_pargc, char ***_pargv,
97    const struct option *_opts);
98
99/* XXX while this is compiled in */
100void device_register(void);
101
102#endif /* _ATMCONFIG_H */
103