1WSJTX(1) WSJT-X Manual WSJTX(1)
2
3
4
6 udp_daemon - Reference example UDP server
7
9 udp_daemon [OPTIONS]
10
12 udp_daemon does not serve any useful purpose other than to demonstrate
13 the UDP message features of WSJT-X. It is a small command line
14 application that interacts with any running WSJT-X instances.
15
16 Developers writing add on applications may find the source code of
17 udp_daemon contained in the WSJT-X code repository useful. The files
18 NetworkMessage.hpp, MessageServer.hpp, MessageClient.hpp and their
19 associated implementations along with the application source
20 UDPDaemon.cpp should cover all the required areas. All these files can
21 be found at:
22
23 https://sourceforge.net/p/wsjt/wsjt/HEAD/tree/branches/wsjtx/
24
25 udp_daemon may also be used as a multi-cast UDP server which allows
26 multiple instances of udp_daemon to be run concurrently, to do this
27 simply pass a suitable multi-cast group address using the command line
28 option and in WSJT-X in the "Settings→Reporting→UDP Server" pane e.g.
29 239.255.0.1 or ff03::1 for a local scope group.
30
31 Note that on some systems it may be necessary to add a static
32 multi-cast route to the routing table before multi-cast traffic can be
33 routed to sockets on the same host as the sender.
34
36 -p PORT, --port=PORT
37 Optional service port number to listen on (default 2237).
38
39 -g MULTICAST-GROUP, --group=MULTICAST-GROUP
40 Optional multicast group address to join (Default unicast server).
41
42 -v, --version
43 Display the application version.
44
45 -h,--help
46 Display usage information.
47
49 Bill Somerville, G4WJS.
50
52 udp_daemon is Copyright © 2015 by William Somerville, G4WJS, with
53 contributions from additional authors. udp_daemon is Open Source
54 software, licensed under the GNU General Public License (GPLv3).
55
56 This program is distributed in the hope that it will be useful, but
57 WITHOUT ANY WARRANTY; without even the implied warranty of
58 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
59 General Public License for more details.
60
61
62
63AsciiDoc 2.5.4 01/22/2022 WSJTX(1)