]> git.llucax.com Git - z.facultad/75.42/plaqui.git/commitdiff
Se agrega un poco mas de info de debug y se corrige un detalle.
authorLeandro Lucarella <llucax@gmail.com>
Sat, 22 Nov 2003 02:55:57 +0000 (02:55 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Sat, 22 Nov 2003 02:55:57 +0000 (02:55 +0000)
Server/src/controlclient.cpp
Server/src/main.cpp

index e744d0d0c8066bf062569c440dea26cbffe46c0e..75e330b5d3cfa8898c31e5cd1128e75527c6971f 100644 (file)
@@ -57,6 +57,11 @@ ControlClient::ControlClient(const string& _host,
        socket->connect(host.c_str(), port);
        host = socket->localhost();
        port = socket->localport();
+#ifdef DEBUG
+       cerr << __FILE__ << "(" << __LINE__ << ")"
+               << ": REAL | host = " << host
+               << " | port = " << port << endl;
+#endif // DEBUG
        receiver = new Receiver(7528, host);
 }
 
@@ -64,6 +69,8 @@ void ControlClient::real_run(void) {
 #ifdef DEBUG
        cerr << __FILE__ << "(" << __LINE__ << ")"
                << ": real_run." << endl;
+       cerr << ": REAL | host = " << host
+               << " | port = " << port << endl;
 #endif // DEBUG
        try {
        } catch (const sockerr& e) {
index 1f505eef20a2a520d2dcf8bc38e32ecfc409ea82..7ac8ff4b331f5cf1fd47a885997468c2efaf7283 100644 (file)
@@ -54,7 +54,7 @@ void on_finished(void) {
 int main(int argc, char* argv[]) {
 
        // Termina con mas informacion si hay una excepcion no manejada.
-       set_terminate (__gnu_cxx::__verbose_terminate_handler);
+       set_terminate(__gnu_cxx::__verbose_terminate_handler);
 
        // Bienvenida.
        cout << "PlaQui Server. Modo de uso: " << endl;