src/proto2/Network.cc
author terom
Thu, 20 Nov 2008 20:27:12 +0000
branchno-netsession
changeset 37 ed2957490bbf
parent 36 785d220fc6b7
child 38 4189b8bf3a5b
permissions -rw-r--r--
compile step complete

#include "Network.hh"
#include "NetworkAddress.hh"
#include "Engine.hh"

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

    return s;

}