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
|
/* status.c
Strings for status codes. */
#include "uucp.h"
#include "uudefs.h"
/* Status strings. These must match enum tstatus_type. */
#if USE_TRADITIONAL_STATUS
const char *azStatus[] =
{
"SUCCESSFUL",
"DEVICE FAILED",
"DIAL FAILED",
"LOGIN FAILED",
"STARTUP FAILED",
"CONVERSATION FAILED",
"TALKING",
"WRONG TIME TO CALL"
};
#else
const char *azStatus[] =
{
"Conversation complete",
"Port unavailable",
"Dial failed",
"Login failed",
"Handshake failed",
"Call failed",
"Talking",
"Wrong time to call"
};
#endif
|