src/Network/Address.cc
author saiam
Mon, 08 Dec 2008 00:05:45 +0000
changeset 273 eeb699e1d908
parent 187 f41f894213ca
child 378 5589abf5e61b
permissions -rw-r--r--
Made forceq to contain time again.

#include "Address.hh"

#include <sstream>

std::ostream& operator<< (std::ostream &s, const NetworkAddress &addr) {
    s << "[" << addr.get_address() << ":" << addr.get_port() << "]";

    return s;

}