You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
1.5 KiB
66 lines
1.5 KiB
#include <cpp_utils/Logger.hpp>
|
|
|
|
#include <cpp_utils/Message.hpp>
|
|
#include <cpp_utils/SslConnection.hpp>
|
|
#include <cpp_utils/SocketClient.hpp>
|
|
|
|
#include "../test/cpp_utils/SimpleMessage.hpp"
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <iostream>
|
|
#include <string>
|
|
|
|
#include <time.h> // nanosleep
|
|
|
|
// #include <Common.hpp>
|
|
|
|
|
|
int main(int argc, char* argv[] )
|
|
{
|
|
if ( argc != 4 ) {
|
|
std::cerr << "Usage: " << argv[0] << " <HOST> <PORT> <MSG>" << std::endl;
|
|
return 1;
|
|
}
|
|
|
|
Logger::createInstance();
|
|
Logger::init(std::cout);
|
|
Logger::setLogLevel(Logger::FINEST);
|
|
SslConnection::init();
|
|
|
|
bool finished = false;
|
|
|
|
SimpleMessage msg(&finished);
|
|
SslConnection conn(argv[1], argv[2], &msg);
|
|
conn.initClientContext();
|
|
SocketClient socketClient(&conn);
|
|
|
|
if ( !socketClient.connect() ) {
|
|
LOG_STATIC( Logger::ERR, "Couldn't connect to server, exiting..." );
|
|
SslConnection::destroy();
|
|
Logger::destroy();
|
|
return 1;
|
|
}
|
|
|
|
// wait for thread creation
|
|
sleep(1);
|
|
|
|
// send message to server
|
|
std::string msg1(argv[3]);
|
|
if ( !socketClient.send( msg1.c_str(), msg1.length()) ) {
|
|
LOG_STATIC( Logger::ERR, "Couldn't send message to server, exiting..." );
|
|
SslConnection::destroy();
|
|
Logger::destroy();
|
|
return 1;
|
|
}
|
|
|
|
// wait for the complate &handled reply
|
|
struct timespec tm = {0,1000};
|
|
while ( !finished && socketClient.isPolling() )
|
|
nanosleep(&tm, &tm) ;
|
|
|
|
// socketClient.disconnect();
|
|
SslConnection::destroy();
|
|
Logger::destroy();
|
|
return 0;
|
|
} |