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
|
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <unistd.h>
#include <pwd.h>
#include <config.h>
#include <scm-version.h>
#include <sys/types.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <netax25/ax25.h>
#include <netrose/rose.h>
#include <netax25/axlib.h>
#include <netax25/axconfig.h>
int main(int argc, char **argv)
{
struct ax25_ctl_struct ax25_ctl;
char *addr;
int s;
if (argc == 2 && strncmp(argv[1], "-v", 2) == 0) {
printf("axctl: %s\n", FULL_VER);
return 0;
}
if (argc < 5) {
fprintf(stderr, "Usage: axctl [-v] port dest src t1|t2|t3|n2|paclen|idle|window|maxq|kill [parm]\n");
return 1;
}
if (ax25_config_load_ports() == 0) {
fprintf(stderr, "axctl: no AX.25 port data configured\n");
return 1;
}
addr = ax25_config_get_addr(argv[1]);
if (addr == NULL) {
fprintf(stderr, "axctl: invalid port name - %s\n", argv[1]);
return 1;
}
if (ax25_aton_entry(addr, (char *)&ax25_ctl.port_addr) == -1)
return 1;
if (ax25_aton_entry(argv[2], (char *)&ax25_ctl.dest_addr) == -1)
return 1;
if (ax25_aton_entry(argv[3], (char *)&ax25_ctl.source_addr) == -1)
return 1;
s = socket(AF_AX25, SOCK_SEQPACKET, 0);
if (s < 0) {
perror("axctl: socket");
return 1;
}
if (strcmp(argv[4], "kill") == 0 || strcmp(argv[4], "-kill") == 0) {
ax25_ctl.cmd = AX25_KILL;
ax25_ctl.arg = 0;
} else {
if (argc < 6) {
fprintf(stderr,"axctl: parameter missing\n");
return 1;
}
ax25_ctl.arg = atoi(argv[5]);
if (strcmp(argv[4], "t1") == 0 || strcmp(argv[4], "-t1") == 0)
ax25_ctl.cmd = AX25_T1;
else if (strcmp(argv[4], "t2") == 0 || strcmp(argv[4], "-t2") == 0)
ax25_ctl.cmd = AX25_T2;
else if (strcmp(argv[4], "t3") == 0 || strcmp(argv[4], "-t3") == 0)
ax25_ctl.cmd = AX25_T3;
else if (strcmp(argv[4], "idle") == 0 || strcmp(argv[4], "-idle") == 0)
ax25_ctl.cmd = AX25_IDLE;
else if (strcmp(argv[4], "n2") == 0 || strcmp(argv[4], "-n2") == 0)
ax25_ctl.cmd = AX25_N2;
else if (strcmp(argv[4], "window") == 0 || strcmp(argv[4], "-window") == 0)
ax25_ctl.cmd = AX25_WINDOW;
else if (strcmp(argv[4], "paclen") == 0 || strcmp(argv[4], "-paclen") == 0)
ax25_ctl.cmd = AX25_PACLEN;
}
ax25_ctl.digi_count = 0;
if (ioctl(s, SIOCAX25CTLCON, &ax25_ctl) != 0) {
perror("axctl: SIOCAX25CTLCON");
return 1;
}
return 0;
}
|