mirror of
https://github.com/LX3JL/xlxd.git
synced 2025-12-06 07:42:01 +01:00
Merge branch 'master' of https://github.com/jg1uaa/xlxd
This commit is contained in:
commit
1b068d6ca9
|
|
@ -136,4 +136,4 @@ Pay attention, the XLX Server acts as an YSF Master, which provides 26 wires-x r
|
|||
It has nothing to do with the regular YSFReflector network, hence you don’t need to register your XLX at ysfreflector.de !
|
||||
|
||||
|
||||
© 2016 Jean-Luc Deltombe and Luc Engelmann LX1IQ
|
||||
© 2016 Jean-Luc Deltombe (LX3JL) and Luc Engelmann (LX1IQ)
|
||||
|
|
|
|||
|
|
@ -82,7 +82,7 @@ Djibouti;DJ;J2
|
|||
Dodecanese;GR;SV5-J45
|
||||
Dominica;DM;J7
|
||||
Dominican Republic;DO;HI
|
||||
East Malaysia;MY;9M6-9M8
|
||||
East Malaysia;MY;9M6-9M8-9W6-9W8
|
||||
Easter Island;CL;CE0
|
||||
Eastern Kiribati (Line Island);KI;T32
|
||||
Ecuador;EC;HC-HD
|
||||
|
|
@ -299,7 +299,7 @@ Virgin Islands U.S.;VI;KP2
|
|||
Wake Island;US;KH9
|
||||
Wales;WL;2W-GC-GW-MW
|
||||
Wallis and Futuna;WF;FW
|
||||
West Malaysia;MY;9M2-9M4-9W2
|
||||
West Malaysia;MY;9M2-9M4-9W2-9W4
|
||||
Western Kiribati (Gilbert Island);KI;T30
|
||||
Western Sahara;EH;S0
|
||||
Willis Island;AU;VK9W
|
||||
|
|
|
|||
|
15
scripts/ambed.service
Normal file
15
scripts/ambed.service
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
[Unit]
|
||||
Description=AMBE Transcoder Daemon
|
||||
After=network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
User=root
|
||||
Group=root
|
||||
ExecStartPre=-/sbin/rmmod ftdi_sio
|
||||
ExecStartPre=-/sbin/rmmod usb_serial
|
||||
ExecStart=/ambed/ambed 127.0.0.1
|
||||
Restart=on-abnormal
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
20
scripts/scripts.readme.txt
Normal file
20
scripts/scripts.readme.txt
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
*************************************************
|
||||
*copy xlxd into /etc.init.d/
|
||||
*copy ambed.service into /etc/systemd/system/
|
||||
*
|
||||
*************************************************
|
||||
* xlxd executable must be in /xlxd/ folder
|
||||
* ambed executable must be in /ambed/ folder
|
||||
*
|
||||
*************************************************
|
||||
* possible options:
|
||||
*
|
||||
* #systemctl start ambed /starts ambed
|
||||
* #systemctl status ambed /shows status of ambed
|
||||
* #systemctl stop ambed /stops ambed
|
||||
* # systemctl restart ambed /restarts ambed
|
||||
*
|
||||
* automatically get it to start on boot:
|
||||
* #systemctl enable ambed
|
||||
*
|
||||
*************************************************
|
||||
|
|
@ -38,7 +38,8 @@ bool CUdpMsgSocket::Open(uint16 uiPort)
|
|||
struct sockaddr_storage *ss;
|
||||
socklen_t ss_len;
|
||||
|
||||
if ( !CUdpSocket::Open(uiPort) ) {
|
||||
if ( !CUdpSocket::Open(uiPort) )
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue