X-Git-Url: http://sru.miketaylor.org.uk/?a=blobdiff_plain;f=src%2Forigin.cpp;h=d49ba1e4d2481e1a5b1310a833ec5056755cb1b4;hb=b0c61b7f8b17d876c88347a96c246c47493140da;hp=db294495f5d3a92142240005fa12d6805f37f52e;hpb=e9530d6289df9b848e4901d7c73f5a2f27706d66;p=metaproxy-moved-to-github.git diff --git a/src/origin.cpp b/src/origin.cpp index db29449..d49ba1e 100644 --- a/src/origin.cpp +++ b/src/origin.cpp @@ -1,5 +1,5 @@ /* This file is part of Metaproxy. - Copyright (C) 2005-2008 Index Data + Copyright (C) 2005-2010 Index Data Metaproxy is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free @@ -26,7 +26,7 @@ namespace mp = metaproxy_1; mp::Origin::Origin(std::string listen_host, unsigned int listen_port) : m_type(API), m_address(""), m_origin_id(0), - m_listen_host(listen_host), m_listen_port(listen_port) + m_listen_host(listen_host), m_listen_port(listen_port), m_max_sockets(0) { } @@ -50,7 +50,15 @@ unsigned int & mp::Origin::listen_port() return m_listen_port; }; +void mp::Origin::set_max_sockets(int max_sockets) +{ + m_max_sockets = max_sockets; +} +int mp::Origin::get_max_sockets() +{ + return m_max_sockets; +} void mp::Origin::set_tcpip_address(std::string addr, unsigned long s) { @@ -59,6 +67,11 @@ void mp::Origin::set_tcpip_address(std::string addr, unsigned long s) m_origin_id = s; } +std::string mp::Origin::get_address() +{ + return m_address; +} + std::ostream& std::operator<<(std::ostream& os, mp::Origin& o) { if (o.m_address != "") @@ -72,8 +85,9 @@ std::ostream& std::operator<<(std::ostream& os, mp::Origin& o) /* * Local variables: * c-basic-offset: 4 + * c-file-style: "Stroustrup" * indent-tabs-mode: nil - * c-file-style: "stroustrup" * End: * vim: shiftwidth=4 tabstop=8 expandtab */ +