-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathx29proto.h
31 lines (27 loc) · 904 Bytes
/
x29proto.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* This program is free software; you can redistribute it
* and/or modify it under the terms of the GNU General
* Public License as published by the Free Software
* Foundation; either version 2 of the License, or (at
* your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#ifndef X29PROTO_H
#define X29PROTO_H
#include "all.h"
#define X29InvitationToClear 1
#define X29IndicationOfBreak 3
#define X29Set 2
struct x29_par {
unsigned char par_ref;
unsigned char par_value;
};
int x29set(int fd,struct x29_par *pars,int len);
int x29set_default(int fd);
int x29inv_clear(int fd);
int x29ind_break(int fd);
void x29profile_echo(void);
#endif