1 #ident "$Id: conf_sf.h,v 4.6 2008/01/31 16:15:37 gert Exp $ Copyright (c) 1994 Gert Doering"
2 
3 /* all (dynamic) sendfax configuration is contained in this structure.
4  * It is initialized and loaded in conf_sf.c and accessed from sendfax.c
5  */
6 
7 extern struct conf_data_sendfax {
8     struct conf_data
9 	ttys,
10         ttys_0,				/* for "ignore" */
11 	modem_init,
12 	modem_handshake,
13 	modem_type,
14 	modem_quirks,
15 	reset_after_fail,
16 	fax_send_flow,
17 	fax_rec_flow,
18 	max_tries,
19         max_tries_ctd,
20 	speed,
21 	switchbd,
22 	open_delay,
23 	ignore_carrier,
24 	dial_prefix,
25 	station_id,
26 	poll_dir,
27 	normal_res,
28 	fax_min_speed,
29 	fax_max_speed,
30 	debug,
31 	verbose,
32 	fax_poll_wanted,	/* cli only (-p) */
33 	fax_page_header,
34 	use_stdin,		/* cli only (-S) */
35         rename_files,		/* cli only (-r) */
36         acct_handle,		/* cli only (-A) */
37 	end_of_config; } c;
38 
39 int sendfax_parse_args _PROTO(( int argc, char ** argv ));
40 void sendfax_get_config _PROTO(( char * port ));
41