//
#include "plaqui/server/receiver.h"
+#include "plaqui/server/string.h"
#include <iostream>
-#include <sstream>
#include <exception>
using namespace std;
Connection::Port port = 7528;
if (argc > 1) {
// Obtengo puerto.
- stringstream str(argv[1]);
- str >> port;
+ to(argv[1], port);
}
string host = "localhost";
if (argc > 2) {