-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsctools.c
More file actions
449 lines (395 loc) · 13.2 KB
/
sctools.c
File metadata and controls
449 lines (395 loc) · 13.2 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
/*
* Include files.
*/
#include <stdio.h>
//#include <varargs.h>
#include <stdarg.h>
#include <srllib.h>
#include <scroute.h>
#include <dxxxlib.h>
#include <dtilib.h>
#ifdef MSISC
#include <msilib.h>
#endif
#ifdef FAXSC
#include <faxlib.h>
#endif
#include "sctools.h"
/*
* Function prototypes
*/
static void nr_scerror(char* first, ...);
/***************************************************************************
* NAME: nr_scroute(devh1, devtype1, devh2, devtype2, mode)
* DESCRIPTION: Create a half or full duplex connection between two SCBus
* devices.
* INPUTS: int devh1; - First SCBus device handle.
* unsigned short devtype1; - Specifies the type for devh1.
* int devh2; - Second SCBus device handle.
* unsigned short devtype2; - Specifies the type for devh2.
* unsigned char mode; - SC_FULLDUP or SC_HALFDUP.
* OUTPUTS: Nothing.
* RETURNS: 0 or -1 on error
*************************************************************************/
#if ( defined( __STDC__ ) || defined( __cplusplus ) )
int nr_scroute( int devh1, unsigned short devtype1,
int devh2, unsigned short devtype2, unsigned char mode )
#else
int nr_scroute( devh1, devtype1, devh2, devtype2, mode )
int devh1;
unsigned short devtype1;
int devh2;
unsigned short devtype2;
unsigned char mode;
#endif
{
SC_TSINFO sc_tsinfo; /* SCBus Timeslots information structure */
long scts; /* SCBus Timeslot */
/*
* Setup the SCBus Timeslots information structure.
*/
sc_tsinfo.sc_numts = 1;
sc_tsinfo.sc_tsarrayp = &scts;
/*
* Get the SCBus timeslot connected to the transmit of the first device.
*/
switch (devtype1) {
case SC_VOX:
if (dx_getxmitslot(devh1, &sc_tsinfo) == -1) {
nr_scerror("nr_scroute: %s: dx_getxmitslot ERROR: %s\n",
ATDV_NAMEP(devh1),ATDV_ERRMSGP(devh1));
return -1;
}
break;
case SC_LSI:
if (ag_getxmitslot(devh1, &sc_tsinfo) == -1) {
nr_scerror("nr_scroute: %s: ag_getxmitslot ERROR: %s\n",
ATDV_NAMEP(devh1),ATDV_ERRMSGP(devh1));
return -1;
}
break;
case SC_DTI:
if (dt_getxmitslot(devh1, &sc_tsinfo) == -1) {
nr_scerror("nr_scroute: %s: dt_getxmitslot ERROR: %s\n",
ATDV_NAMEP(devh1),ATDV_ERRMSGP(devh1));
return -1;
}
break;
#ifdef MSISC
case SC_MSI:
if (ms_getxmitslot(devh1, &sc_tsinfo) == -1) {
nr_scerror("nr_scroute: %s: ms_getxmitslot ERROR: %s\n",
ATDV_NAMEP(devh1),ATDV_ERRMSGP(devh1));
return -1;
}
break;
#endif
#ifdef FAXSC
case SC_FAX:
if (fx_getxmitslot(devh1, &sc_tsinfo) == -1) {
nr_scerror("nr_scroute: %s: fx_getxmitslot ERROR: %s\n",
ATDV_NAMEP(devh1),ATDV_ERRMSGP(devh1));
return -1;
}
break;
#endif
default:
nr_scerror("nr_scroute: %s: ERROR: Invalid 1st device type\n",
ATDV_NAMEP(devh1));
return -1;
}
/*
* Make the second device type listen to the timeslot that the first
* device is transmitting on. If a half duplex connection is desired,
* then return. Otherwise, get the SCBus timeslot connected to the
* transmit of the second device.
*/
switch (devtype2) {
case SC_VOX:
if (dx_listen(devh2, &sc_tsinfo) == -1) {
nr_scerror("nr_scroute: %s: Cannot dx_listen %d ERROR: %s\n",
ATDV_NAMEP(devh2),scts,ATDV_ERRMSGP(devh2));
return -1;
}
if (mode == SC_HALFDUP) {
return 0;
}
if (dx_getxmitslot(devh2, &sc_tsinfo) == -1) {
nr_scerror("nr_scroute: %s: dx_getxmitslot ERROR: %s\n",
ATDV_NAMEP(devh2),ATDV_ERRMSGP(devh2));
return -1;
}
break;
case SC_LSI:
if (ag_listen(devh2, &sc_tsinfo) == -1) {
nr_scerror("nr_scroute: %s: Cannot ag_listen %d ERROR: %s\n",
ATDV_NAMEP(devh2),scts,ATDV_ERRMSGP(devh2));
return -1;
}
if (mode == SC_HALFDUP) {
return 0;
}
if (ag_getxmitslot(devh2, &sc_tsinfo) == -1) {
nr_scerror("nr_scroute: %s: ag_getxmitslot ERROR: %s\n",
ATDV_NAMEP(devh2),ATDV_ERRMSGP(devh2));
return -1;
}
break;
case SC_DTI:
if (dt_listen(devh2, &sc_tsinfo) == -1) {
nr_scerror("nr_scroute: %s: Cannot dt_listen %d ERROR: %s\n",
ATDV_NAMEP(devh2),scts,ATDV_ERRMSGP(devh2));
return -1;
}
if (mode == SC_HALFDUP) {
return 0;
}
if (dt_getxmitslot(devh2, &sc_tsinfo) == -1) {
nr_scerror("nr_scroute: %s: dt_getxmitslot ERROR: %s\n",
ATDV_NAMEP(devh2),ATDV_ERRMSGP(devh2));
return -1;
}
break;
#ifdef MSISC
case SC_MSI:
if (ms_listen(devh2, &sc_tsinfo) == -1) {
nr_scerror("nr_scroute: %s: Cannot ms_listen %d ERROR: %s\n",
ATDV_NAMEP(devh2),scts,ATDV_ERRMSGP(devh2));
return -1;
}
if (mode == SC_HALFDUP) {
return 0;
}
if (ms_getxmitslot(devh2, &sc_tsinfo) == -1) {
nr_scerror("nr_scroute: %s: ms_getxmitslot ERROR: %s\n",
ATDV_NAMEP(devh2),ATDV_ERRMSGP(devh2));
return -1;
}
break;
#endif
#ifdef FAXSC
case SC_FAX:
if (fx_listen(devh2, &sc_tsinfo) == -1) {
nr_scerror("nr_scroute: %s: Cannot fx_listen %d ERROR: %s\n",
ATDV_NAMEP(devh2),scts,ATDV_ERRMSGP(devh2));
return -1;
}
if (mode == SC_HALFDUP) {
return 0;
}
if (fx_getxmitslot(devh2, &sc_tsinfo) == -1) {
nr_scerror("nr_scroute: %s: fx_getxmitslot ERROR: %s\n",
ATDV_NAMEP(devh2),ATDV_ERRMSGP(devh2));
return -1;
}
break;
#endif
default:
nr_scerror("nr_scroute: %s: ERROR: Invalid 2nd device type\n",
ATDV_NAMEP(devh2));
return -1;
}
/*
* Now make the first device listen to the SCBus timeslot that the
* second device is transmitting on.
*/
switch (devtype1) {
case SC_VOX:
if (dx_listen(devh1, &sc_tsinfo) == -1) {
nr_scerror("nr_scroute: %s: Cannot dx_listen %d ERROR: %s\n",
ATDV_NAMEP(devh1),scts,ATDV_ERRMSGP(devh1));
return -1;
}
break;
case SC_LSI:
if (ag_listen(devh1, &sc_tsinfo) == -1) {
nr_scerror("nr_scroute: %s: Cannot ag_listen %d ERROR: %s\n",
ATDV_NAMEP(devh1),scts,ATDV_ERRMSGP(devh1));
return -1;
}
break;
case SC_DTI:
if (dt_listen(devh1, &sc_tsinfo) == -1) {
nr_scerror("nr_scroute: %s: Cannot dt_listen %d ERROR: %s\n",
ATDV_NAMEP(devh1),scts,ATDV_ERRMSGP(devh1));
return -1;
}
break;
#ifdef MSISC
case SC_MSI:
if (ms_listen(devh1, &sc_tsinfo) == -1) {
nr_scerror("nr_scroute: %s: Cannot ms_listen %d ERROR: %s\n",
ATDV_NAMEP(devh1),scts,ATDV_ERRMSGP(devh1));
return -1;
}
break;
#endif
#ifdef FAXSC
case SC_FAX:
if (fx_listen(devh1, &sc_tsinfo) == -1) {
nr_scerror("nr_scroute: %s: Cannot fx_listen %d ERROR: %s\n",
ATDV_NAMEP(devh1),scts,ATDV_ERRMSGP(devh1));
return -1;
}
break;
#endif
}
return 0;
}
/***************************************************************************
* NAME: nr_scunroute(devh1, devtype1, devh2, devtype2, mode)
* DESCRIPTION: Break the half or full duplex connection between two SCBus
* devices.
* INPUTS: int devh1; - First SCBus device handle.
* unsigned short devtype1; - Specifies the type for devh1.
* int devh2; - Second SCBus device handle.
* unsigned short devtype2; - Specifies the type for devh2.
* unsigned char mode; - SC_FULLDUP or SC_HALFDUP.
* OUTPUTS: Nothing.
* RETURNS: 0 or -1 on error
*************************************************************************/
#if ( defined( __STDC__ ) || defined( __cplusplus ) )
int nr_scunroute( int devh1, unsigned short devtype1,
int devh2, unsigned short devtype2, unsigned char mode )
#else
int nr_scunroute( devh1, devtype1, devh2, devtype2, mode )
int devh1;
unsigned short devtype1;
int devh2;
unsigned short devtype2;
unsigned char mode;
#endif
{
short rc = 0; /* Return code from the function */
/*
* Disconnect the receive of the second device from the SCBus timeslot.
*/
switch (devtype2) {
case SC_VOX:
if (dx_unlisten(devh2) == -1) {
nr_scerror("nr_scunroute: %s: dx_unlisten ERROR: %s\n",
ATDV_NAMEP(devh2),ATDV_ERRMSGP(devh2));
rc = -1;
}
break;
case SC_LSI:
if (ag_unlisten(devh2) == -1) {
nr_scerror("nr_scunroute: %s: ag_unlisten ERROR: %s\n",
ATDV_NAMEP(devh2),ATDV_ERRMSGP(devh2));
rc = -1;
}
break;
case SC_DTI:
if (dt_unlisten(devh2) == -1) {
nr_scerror("nr_scunroute: %s: dt_unlisten ERROR: %s\n",
ATDV_NAMEP(devh2),ATDV_ERRMSGP(devh2));
rc = -1;
}
break;
#ifdef MSISC
case SC_MSI:
if (ms_unlisten(devh2) == -1) {
nr_scerror("nr_scunroute: %s: ms_unlisten ERROR: %s\n",
ATDV_NAMEP(devh2),ATDV_ERRMSGP(devh2));
rc = -1;
}
break;
#endif
#ifdef FAXSC
case SC_FAX:
if (fx_unlisten(devh2) == -1) {
nr_scerror("nr_scunroute: %s: fx_unlisten ERROR: %s\n",
ATDV_NAMEP(devh2),ATDV_ERRMSGP(devh2));
rc = -1;
}
break;
#endif
default:
nr_scerror("nr_scunroute: %s: ERROR: Invalid 2nd device type\n",
ATDV_NAMEP(devh2));
rc = -1;
}
/*
* A half duplex connection has already been broken. If this is all that
* is required, then return now.
*/
if (mode == SC_HALFDUP) {
return rc;
}
/*
* Disconnect the receive of the first device from the SCBus timeslot.
*/
switch (devtype1) {
case SC_VOX:
if (dx_unlisten(devh1) == -1) {
nr_scerror("nr_scunroute: %s: dx_unlisten ERROR: %s\n",
ATDV_NAMEP(devh1),ATDV_ERRMSGP(devh1));
rc = -1;
}
break;
case SC_LSI:
if (ag_unlisten(devh1) == -1) {
nr_scerror("nr_scunroute: %s: ag_unlisten ERROR: %s\n",
ATDV_NAMEP(devh1),ATDV_ERRMSGP(devh1));
rc = -1;
}
break;
case SC_DTI:
if (dt_unlisten(devh1) == -1) {
nr_scerror("nr_scunroute: %s: dt_unlisten ERROR: %s\n",
ATDV_NAMEP(devh1),ATDV_ERRMSGP(devh1));
rc = -1;
}
break;
#ifdef MSISC
case SC_MSI:
if (ms_unlisten(devh1) == -1) {
nr_scerror("nr_scunroute: %s: ms_unlisten ERROR: %s\n",
ATDV_NAMEP(devh1),ATDV_ERRMSGP(devh1));
rc = -1;
}
break;
#endif
#ifdef FAXSC
case SC_FAX:
if (fx_unlisten(devh1) == -1) {
nr_scerror("nr_scunroute: %s: fx_unlisten ERROR: %s\n",
ATDV_NAMEP(devh1),ATDV_ERRMSGP(devh1));
rc = -1;
}
break;
#endif
default:
nr_scerror("nr_scunroute: %s: ERROR: Invalid 1st device type\n",
ATDV_NAMEP(devh1));
rc = -1;
}
return rc;
}
/***************************************************************************
* NAME: nr_scerror(va_alist)
* DESCRIPTION: This function takes in variable number of arguments and prints
* an error message before exit.
* INPUT: int va_alist; - The format string to use for printing the
* error message followed by variable argument
* list.
* OUTPUT: None.
* RETURNS: Nothing.
***************************************************************************/
static void nr_scerror(char* first, ...)
{
fprintf(stderr, "hello?\n");
fprintf(stderr, "%s\n", first);
//#ifdef PRINTON
va_list args;
char *fmt;
/*
* Make args point to the 1st unnamed argument and then print to stderr.
*/
va_start(args, first);
fmt = va_arg(args, char *);
vfprintf(stderr, fmt, args);
va_end(args);
fprintf(stderr, "hello.\n");
//#endif
}