1 |
199 |
simons |
/* $Id: isdn_tty.h,v 1.1.1.1 2001-09-10 07:44:18 simons Exp $
|
2 |
|
|
|
3 |
|
|
* header for Linux ISDN subsystem, tty related functions (linklevel).
|
4 |
|
|
*
|
5 |
|
|
* Copyright 1994-1998 by Fritz Elfert (fritz@isdn4linux.de)
|
6 |
|
|
* Copyright 1995,96 by Thinking Objects Software GmbH Wuerzburg
|
7 |
|
|
*
|
8 |
|
|
* This program is free software; you can redistribute it and/or modify
|
9 |
|
|
* it under the terms of the GNU General Public License as published by
|
10 |
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
11 |
|
|
* any later version.
|
12 |
|
|
*
|
13 |
|
|
* This program is distributed in the hope that it will be useful,
|
14 |
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
15 |
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
16 |
|
|
* GNU General Public License for more details.
|
17 |
|
|
*
|
18 |
|
|
* You should have received a copy of the GNU General Public License
|
19 |
|
|
* along with this program; if not, write to the Free Software
|
20 |
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
21 |
|
|
*
|
22 |
|
|
* $Log: not supported by cvs2svn $
|
23 |
|
|
* Revision 1.1.1.1 2001/07/02 17:58:31 simons
|
24 |
|
|
* Initial revision
|
25 |
|
|
*
|
26 |
|
|
* Revision 1.10.2.2 1998/11/05 22:12:25 fritz
|
27 |
|
|
* Changed mail-address.
|
28 |
|
|
*
|
29 |
|
|
* Revision 1.10.2.1 1998/10/25 15:48:44 fritz
|
30 |
|
|
* Misc bugfixes and adaptions to new HiSax
|
31 |
|
|
*
|
32 |
|
|
* Revision 1.10 1997/03/02 14:29:26 fritz
|
33 |
|
|
* More ttyI related cleanup.
|
34 |
|
|
*
|
35 |
|
|
* Revision 1.9 1997/02/28 02:32:49 fritz
|
36 |
|
|
* Cleanup: Moved some tty related stuff from isdn_common.c
|
37 |
|
|
* to isdn_tty.c
|
38 |
|
|
* Bugfix: Bisync protocol did not behave like documented.
|
39 |
|
|
*
|
40 |
|
|
* Revision 1.8 1997/02/10 20:12:50 fritz
|
41 |
|
|
* Changed interface for reporting incoming calls.
|
42 |
|
|
*
|
43 |
|
|
* Revision 1.7 1997/02/03 23:06:10 fritz
|
44 |
|
|
* Reformatted according CodingStyle
|
45 |
|
|
*
|
46 |
|
|
* Revision 1.6 1997/01/14 01:35:19 fritz
|
47 |
|
|
* Changed prototype of isdn_tty_modem_hup.
|
48 |
|
|
*
|
49 |
|
|
* Revision 1.5 1996/05/17 03:52:31 fritz
|
50 |
|
|
* Changed DLE handling for audio receive.
|
51 |
|
|
*
|
52 |
|
|
* Revision 1.4 1996/05/11 21:52:34 fritz
|
53 |
|
|
* Changed queue management to use sk_buffs.
|
54 |
|
|
*
|
55 |
|
|
* Revision 1.3 1996/05/07 09:16:34 fritz
|
56 |
|
|
* Changed isdn_try_read parameter.
|
57 |
|
|
*
|
58 |
|
|
* Revision 1.2 1996/04/30 21:05:27 fritz
|
59 |
|
|
* Test commit
|
60 |
|
|
*
|
61 |
|
|
* Revision 1.1 1996/01/10 21:39:22 fritz
|
62 |
|
|
* Initial revision
|
63 |
|
|
*
|
64 |
|
|
*/
|
65 |
|
|
|
66 |
|
|
extern void isdn_tty_modem_escape(void);
|
67 |
|
|
extern void isdn_tty_modem_ring(void);
|
68 |
|
|
extern void isdn_tty_modem_xmit(void);
|
69 |
|
|
extern int isdn_tty_modem_init(void);
|
70 |
|
|
extern void isdn_tty_readmodem(void);
|
71 |
|
|
extern int isdn_tty_find_icall(int, isdn_ctrl *);
|
72 |
|
|
extern void isdn_tty_cleanup_xmit(modem_info *);
|
73 |
|
|
extern int isdn_tty_stat_callback(int, isdn_ctrl *);
|
74 |
|
|
extern int isdn_tty_rcv_skb(int, int, int, struct sk_buff *);
|