Skip to content

Commit

Permalink
syslog server update
Browse files Browse the repository at this point in the history
  • Loading branch information
richonguzman committed Nov 7, 2024
1 parent afb6a60 commit 3d01ea0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions data_embed/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ <h3>Last 10 received packets list</h3>
</tbody>
</table>
<span>List refresh automatically every 15 seconds.</span><br>
<small>(Local Time is NPT-Time adjusted with your GMT Offset)</small>
<small>(Local Time is NTP-Time adjusted with your GMT Offset)</small>
</div>
</div>
<hr />
Expand Down Expand Up @@ -1310,7 +1310,7 @@ <h5>
type="text"
name="syslog.port"
id="syslog.port"
placeholder="514"
placeholder="1514"
class="form-control"
disabled
/>
Expand Down
4 changes: 2 additions & 2 deletions src/configuration.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ bool Configuration::readFile() {

syslog.active = data["syslog"]["active"] | false;
syslog.server = data["syslog"]["server"] | "lora.link9.net";
syslog.port = data["syslog"]["port"] | 514;
syslog.port = data["syslog"]["port"] | 1514;

tnc.enableServer = data["tnc"]["enableServer"] | false;
tnc.enableSerial = data["tnc"]["enableSerial"] | false;
Expand Down Expand Up @@ -293,7 +293,7 @@ void Configuration::init() {

syslog.active = false;
syslog.server = "lora.link9.net";
syslog.port = 514;
syslog.port = 1514;

wxsensor.active = false;
wxsensor.heightCorrection = 0;
Expand Down

0 comments on commit 3d01ea0

Please sign in to comment.