-
Notifications
You must be signed in to change notification settings - Fork 0
/
testserver.xml
66 lines (59 loc) · 2.29 KB
/
testserver.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<!--
* Project: ax25c - File: ax25c.xsd
* Copyright (C) 2019 - Tania Hagn - tania@df9ry.de
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<Configuration name="TestServer"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://df9ry.ampr.org/ax25c ax25c.xsd"
xmlns="http://df9ry.ampr.org/ax25c">
<Plugins>
<Plugin name="MemoryManager" file="ax25c_mm_simple.so"/>
<Plugin name="Terminal" file="ax25c_terminal.so">
<Settings>
<Setting name="peer">AX25</Setting>
<Setting name="line_length">132</Setting>
<Setting name="buf_size">64</Setting>
<Setting name="buf_reserve">16</Setting>
<Setting name="loc_addr">DF9RY</Setting>
<Setting name="rem_addr">DB0FHN</Setting>
<Setting name="lead_txt">\033[0m\033[47m\033[30m</Setting>
<Setting name="lead_cmd">\033[1m\033[42m\033[30m</Setting>
<Setting name="lead_inf">\033[1m\033[106m\033[30m</Setting>
<Setting name="lead_err">\033[1m\033[43m\033[32m</Setting>
<Setting name="prompt">Command:> </Setting>
</Settings>
</Plugin>
<Plugin name="AX25" file="ax25v2_2.so">
<Settings>
<Setting name="peer">AXUDP-1</Setting>
</Settings>
</Plugin>
<Plugin name="AXUDP" file="ax25c_udp.so">
<Instances>
<Instance name="AXUDP-1">
<Settings>
<Setting name="host">localhost</Setting>
<Setting name="port">9300</Setting>
<Setting name="mode">server</Setting>
<Setting name="ip_version">ip_v4</Setting>
<Setting name="tx_buf_size">64</Setting>
<Setting name="rx_buf_size">1024</Setting>
</Settings>
</Instance>
</Instances>
</Plugin>
</Plugins>
</Configuration>