3
Fork 0

Update SVXLink/README.md

This commit is contained in:
R3ABM Artem 2019-02-16 21:07:53 +00:00
parent dd0a950616
commit 3729e546c3

View file

@ -55,6 +55,10 @@ And then put next lines:
{
bridge.setDefaultConfiguration(value.c_str());
}
if (cfg().getValue(cfgName(), "BRIDGE_ENCODING", value))
{
bridge.setEncodingConfiguration(value.c_str());
}
if (cfg().getValue(cfgName(), "BRIDGE_PROXY", value))
{
bridge.setProxyConfiguration(value.c_str());
@ -101,9 +105,11 @@ Add folowing lines to your *ModuleEchoLink.conf*
```
BRIDGE_DEFAULT=9504
BRIDGE_PROXY=2501:10
BRIDGE_ENCODING=cp1251
```
Where:
* *BRIDGE_DEFAULT* is a default ID of callee that will be passed when ID cannot be resolved by callsign (most possible this callsign has not been registred in DMR database)
* *BRIDGE_PROXY* should correspond to Network ID of BrandMeister Server and Cord ID connected to.
* *BRIDGE_PROXY* should correspond to Network ID of BrandMeister Server and Cord ID connected to
* *BRIDGE_ENCODING* should contain national encoding name used for text messages and descriptions at EchoLink (please google iconv for available encoding names)