1161754Sru/*	$OpenBSD: acutab.c,v 1.5 2006/03/17 19:17:13 moritz Exp $	*/
288276Smarkm/*	$NetBSD: acutab.c,v 1.3 1994/12/08 09:30:41 jtc Exp $	*/
388276Smarkm
47527Sjkh/*
57527Sjkh * Copyright (c) 1983, 1993
67527Sjkh *	The Regents of the University of California.  All rights reserved.
77527Sjkh *
87527Sjkh * Redistribution and use in source and binary forms, with or without
97527Sjkh * modification, are permitted provided that the following conditions
107527Sjkh * are met:
117527Sjkh * 1. Redistributions of source code must retain the above copyright
127527Sjkh *    notice, this list of conditions and the following disclaimer.
137527Sjkh * 2. Redistributions in binary form must reproduce the above copyright
147527Sjkh *    notice, this list of conditions and the following disclaimer in the
157527Sjkh *    documentation and/or other materials provided with the distribution.
16161754Sru * 3. Neither the name of the University nor the names of its contributors
177527Sjkh *    may be used to endorse or promote products derived from this software
187527Sjkh *    without specific prior written permission.
197527Sjkh *
207527Sjkh * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
217527Sjkh * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
227527Sjkh * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
237527Sjkh * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
247527Sjkh * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
257527Sjkh * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
267527Sjkh * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
277527Sjkh * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
287527Sjkh * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
297527Sjkh * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
307527Sjkh * SUCH DAMAGE.
317527Sjkh */
327527Sjkh
3388276Smarkm#include <sys/cdefs.h>
3488276Smarkm__FBSDID("$FreeBSD$");
3588276Smarkm
367527Sjkh#ifndef lint
3728365Scharnier#if 0
387527Sjkhstatic char sccsid[] = "@(#)acutab.c	8.1 (Berkeley) 6/6/93";
39161754Srustatic const char rcsid[] = "$OpenBSD: acutab.c,v 1.5 2006/03/17 19:17:13 moritz Exp $";
4028365Scharnier#endif
417527Sjkh#endif /* not lint */
427527Sjkh
437527Sjkh#include "tip.h"
447527Sjkh
457527Sjkhacu_t acutable[] = {
467527Sjkh#if BIZ1031
47161754Sru	{ "biz31f",	biz31f_dialer,	biz31_disconnect,	biz31_abort },
48161754Sru	{ "biz31w",	biz31w_dialer,	biz31_disconnect,	biz31_abort },
497527Sjkh#endif
507527Sjkh#if BIZ1022
51161754Sru	{ "biz22f",	biz22f_dialer,	biz22_disconnect,	biz22_abort },
52161754Sru	{ "biz22w",	biz22w_dialer,	biz22_disconnect,	biz22_abort },
537527Sjkh#endif
547527Sjkh#if DF02
55161754Sru	{ "df02",	df02_dialer,	df_disconnect,		df_abort },
567527Sjkh#endif
577527Sjkh#if DF03
58161754Sru	{ "df03",	df03_dialer,	df_disconnect,		df_abort },
597527Sjkh#endif
607527Sjkh#if DN11
61161754Sru	{ "dn11",	dn_dialer,	dn_disconnect,		dn_abort },
627527Sjkh#endif
6388276Smarkm#ifdef VENTEL
64161754Sru	{ "ventel",	ven_dialer,	ven_disconnect,		ven_abort },
657527Sjkh#endif
6688276Smarkm#ifdef HAYES
67161754Sru	{ "hayes",	hay_dialer,	hay_disconnect,		hay_abort },
687527Sjkh#endif
6988276Smarkm#ifdef COURIER
70161754Sru	{ "courier",	cour_dialer,	cour_disconnect,	cour_abort },
717527Sjkh#endif
7288276Smarkm#ifdef T3000
73161754Sru	{ "t3000",	t3000_dialer,	t3000_disconnect,	t3000_abort },
747527Sjkh#endif
7588276Smarkm#ifdef V3451
7688276Smarkm#ifndef V831
77161754Sru	{ "vadic",	v3451_dialer,	v3451_disconnect,	v3451_abort },
787527Sjkh#endif
79161754Sru	{ "v3451",	v3451_dialer,	v3451_disconnect,	v3451_abort },
807527Sjkh#endif
8188276Smarkm#ifdef V831
8288276Smarkm#ifndef V3451
83161754Sru	{ "vadic",	v831_dialer,	v831_disconnect,	v831_abort },
847527Sjkh#endif
85161754Sru	{ "v831",	v831_dialer,	v831_disconnect,	v831_abort },
867527Sjkh#endif
87161754Sru	{ 0,		0,		0,			0 }
887527Sjkh};
897527Sjkh
90