xref: /onnv-gate/usr/src/cmd/tip/acutab.c (revision 549:9e644232f978)
1*549Smuffin /*
2*549Smuffin  * Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
3*549Smuffin  * Use is subject to license terms.
4*549Smuffin  */
5*549Smuffin 
60Sstevel@tonic-gate /*
70Sstevel@tonic-gate  * Copyright (c) 1983 Regents of the University of California.
80Sstevel@tonic-gate  * All rights reserved. The Berkeley software License Agreement
90Sstevel@tonic-gate  * specifies the terms and conditions for redistribution.
100Sstevel@tonic-gate  */
11*549Smuffin 
12*549Smuffin #pragma ident	"%Z%%M%	%I%	%E% SMI"
130Sstevel@tonic-gate 
140Sstevel@tonic-gate #include "tip.h"
150Sstevel@tonic-gate 
16*549Smuffin extern int	df02_dialer(char *, char *), df03_dialer(char *, char *);
17*549Smuffin extern int	biz31f_dialer(char *, char *), biz31w_dialer(char *, char *);
18*549Smuffin extern int	biz22f_dialer(char *, char *), biz22w_dialer(char *, char *);
19*549Smuffin extern int	hayes_dialer(char *, char *);
20*549Smuffin extern int	ven_dialer(char *, char *);
21*549Smuffin extern int	v3451_dialer(char *, char *);
22*549Smuffin extern int	v831_dialer(char *, char *);
23*549Smuffin extern int	dn_dialer(char *, char *);
24*549Smuffin extern void	df_disconnect(void), df_abort(void);
25*549Smuffin extern void	biz31_disconnect(void), biz31_abort(void);
26*549Smuffin extern void	biz22_disconnect(void), biz22_abort(void);
27*549Smuffin extern void	hayes_disconnect(void), hayes_abort(void);
28*549Smuffin extern void	ven_disconnect(void), ven_abort(void);
29*549Smuffin extern void	v3451_disconnect(void), v3451_abort(void);
30*549Smuffin extern void	v831_disconnect(void), v831_abort(void);
31*549Smuffin extern void	dn_disconnect(void), dn_abort(void);
320Sstevel@tonic-gate 
330Sstevel@tonic-gate acu_t acutable[] = {
340Sstevel@tonic-gate #if BIZ1031
350Sstevel@tonic-gate 	"biz31f", biz31f_dialer, biz31_disconnect,	biz31_abort,
360Sstevel@tonic-gate 	"biz31w", biz31w_dialer, biz31_disconnect,	biz31_abort,
370Sstevel@tonic-gate #endif
380Sstevel@tonic-gate #if BIZ1022
390Sstevel@tonic-gate 	"biz22f", biz22f_dialer, biz22_disconnect,	biz22_abort,
400Sstevel@tonic-gate 	"biz22w", biz22w_dialer, biz22_disconnect,	biz22_abort,
410Sstevel@tonic-gate #endif
420Sstevel@tonic-gate #if DF02
430Sstevel@tonic-gate 	"df02",	df02_dialer,	df_disconnect,		df_abort,
440Sstevel@tonic-gate #endif
450Sstevel@tonic-gate #if DF03
460Sstevel@tonic-gate 	"df03",	df03_dialer,	df_disconnect,		df_abort,
470Sstevel@tonic-gate #endif
480Sstevel@tonic-gate #if DN11
490Sstevel@tonic-gate 	"dn11",	dn_dialer,	dn_disconnect,		dn_abort,
500Sstevel@tonic-gate #endif
510Sstevel@tonic-gate #ifdef VENTEL
520Sstevel@tonic-gate 	"ventel", ven_dialer,	ven_disconnect,		ven_abort,
530Sstevel@tonic-gate #endif
540Sstevel@tonic-gate #ifdef V3451
550Sstevel@tonic-gate #ifndef V831
560Sstevel@tonic-gate 	"vadic", v3451_dialer,	v3451_disconnect,	v3451_abort,
570Sstevel@tonic-gate #endif
580Sstevel@tonic-gate 	"v3451", v3451_dialer,	v3451_disconnect,	v3451_abort,
590Sstevel@tonic-gate #endif
600Sstevel@tonic-gate #ifdef V831
610Sstevel@tonic-gate #ifndef V3451
620Sstevel@tonic-gate 	"vadic", v831_dialer,	v831_disconnect,	v831_abort,
630Sstevel@tonic-gate #endif
640Sstevel@tonic-gate 	"v831", v831_dialer,	v831_disconnect,	v831_abort,
650Sstevel@tonic-gate #endif
660Sstevel@tonic-gate #ifdef HAYES
670Sstevel@tonic-gate 	"hayes", hayes_dialer,	hayes_disconnect,	hayes_abort,
680Sstevel@tonic-gate 	"at",	hayes_dialer,	hayes_disconnect,	hayes_abort,
690Sstevel@tonic-gate #endif
700Sstevel@tonic-gate 	0,	0,		0,			0
710Sstevel@tonic-gate };
72