Skip to content

Commit

Permalink
Make JSBSim and telnet concurrent tasks.
Browse files Browse the repository at this point in the history
  • Loading branch information
bcoconni committed Oct 20, 2024
1 parent 8a386ec commit 31ba6b2
Show file tree
Hide file tree
Showing 2 changed files with 175 additions and 161 deletions.
4 changes: 2 additions & 2 deletions src/input_output/FGInputSocket.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -259,15 +259,15 @@ void FGInputSocket::Read(bool Holding)
} else if (command == "help") { // HELP

socket->Reply(
" JSBSim Server commands:\n\r\n"
" JSBSim Server commands:\r\n\r\n"
" get {property name}\r\n"
" set {property name} {value}\r\n"
" hold\r\n"
" resume\r\n"
" iterate {value}\r\n"
" help\r\n"
" quit\r\n"
" info\r\n");
" info\r\n\r\n");

} else {
socket->Reply(string("Unknown command: ") + command + "\r\n");
Expand Down
Loading

0 comments on commit 31ba6b2

Please sign in to comment.