Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/qtapp/strsvr_qt/svrmain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@ void MainForm::stopServer()
void MainForm::updateStreamMonitor()
{
static const QString types[] = {
tr("None"), tr("Serial"), tr("File"), tr("TCP Server"), tr("TCP Client"), tr("Ntrip Sever"),
tr("None"), tr("Serial"), tr("File"), tr("TCP Server"), tr("TCP Client"), tr("Ntrip Server"),
tr("Ntrip Client"), tr("FTP"), tr("HTTP"), tr("Ntrip Caster"), tr("UDP Server"),
tr("UDP Client"), tr("Mem Buffer")
};
Expand Down
4 changes: 2 additions & 2 deletions app/winapp/strsvr/svrmain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -559,8 +559,8 @@ void __fastcall TMainForm::SvrStop(void)
void __fastcall TMainForm::Timer2Timer(TObject *Sender)
{
const char *types[]={
"None","Serial","File","TCP Server","TCP Client","Ntrip Sever",
"Ntrip Client","FTP","HTTP","Ntrip Cast","UDP Sever","UDP Client"
"None","Serial","File","TCP Server","TCP Client","Ntrip Server",
"Ntrip Client","FTP","HTTP","Ntrip Cast","UDP Server","UDP Client"
};
const char *modes[]={"-","R","W","R/W"};
const char *states[]={"ERR","-","WAIT","CONN"};
Expand Down