X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/b0a202776ab7634c206b495b42e20cfe6492e035..81fe1238505972c209c81f1c729ae910c275cfe9:/Server/tests/client_test.cpp diff --git a/Server/tests/client_test.cpp b/Server/tests/client_test.cpp index 02eb991..c5fc75f 100644 --- a/Server/tests/client_test.cpp +++ b/Server/tests/client_test.cpp @@ -27,7 +27,6 @@ #include "plaqui/server/controlclient.h" #include "plaqui/server/string.h" -//#include #include #include #include @@ -51,6 +50,11 @@ void on_ok_received(const string& body) { cout << " Body: " << body << endl; } +void on_frame_received(const string& frame) { + cout << " Frame recibido! :-D" << endl; + cout << frame << endl; +} + void on_error_received(unsigned code) { cout << " Respuesta recibida: Error nro " << code << "! :-(" << endl; } @@ -72,7 +76,7 @@ int main(int argc, char* argv[]) { // Obtengo host. host = argv[1]; } - unsigned port = 7522; + Connection::Port port = 7522; if (argc > 2) { // Obtengo puerto. stringstream str(argv[2]); @@ -89,6 +93,7 @@ int main(int argc, char* argv[]) { client->signal_connected().connect(SigC::slot(on_connected)); client->signal_ok_received().connect(SigC::slot(on_ok_received)); client->signal_error_received().connect(SigC::slot(on_error_received)); + client->signal_frame_received().connect(SigC::slot(on_frame_received)); client->run(); char buf[BUFSIZ]; while (cin.getline(buf, BUFSIZ)) {