]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Server/tests/client_test.cpp
- Se agrega una funcion templateada to() para convertir de un tipo de dato
[z.facultad/75.42/plaqui.git] / Server / tests / client_test.cpp
index 0ab975bac78fc414ec93298ae1cb679c6c4fbd18..88027e16442410bf37b1a72546f2733151c13d37 100644 (file)
@@ -28,7 +28,6 @@
 #include "plaqui/server/controlclient.h"
 #include "plaqui/server/string.h"
 #include <iostream>
-#include <sstream>
 #include <exception>
 #include <vector>
 
@@ -50,6 +49,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;
 }
@@ -71,11 +75,10 @@ int main(int argc, char* argv[]) {
                // Obtengo host.
                host = argv[1];
        }
+       // Obtengo puerto.
        Connection::Port port = 7522;
        if (argc > 2) {
-               // Obtengo puerto.
-               stringstream str(argv[2]);
-               str >> port;
+               to(argv[2], port);
        }
 
        // Inicializa threads.
@@ -88,6 +91,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)) {