mirror of
https://github.com/nasa/trick.git
synced 2024-12-21 06:03:10 +00:00
18 lines
421 B
C++
18 lines
421 B
C++
#include <sstream>
|
|
|
|
#include "trick/VariableServerSession.hh"
|
|
#include "trick/variable_server_message_types.h"
|
|
#include "trick/tc_proto.h"
|
|
|
|
int Trick::VariableServerSession::write_stdio(int stream, std::string text) {
|
|
|
|
std::stringstream outstream;
|
|
|
|
outstream << VS_STDIO << " " << stream << " " << (int)text.length() << "\n";
|
|
outstream << text;
|
|
|
|
_connection->write(outstream.str());
|
|
|
|
return 0 ;
|
|
}
|