X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/e90831f68ec3af87bddba19b44be388eb2b3752e..ee2cb3d6c26ae319d20bde28f415393e96611ece:/Server/tests/client_test.cpp?ds=sidebyside diff --git a/Server/tests/client_test.cpp b/Server/tests/client_test.cpp index 0ab975b..c5fc75f 100644 --- a/Server/tests/client_test.cpp +++ b/Server/tests/client_test.cpp @@ -50,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; } @@ -88,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)) {