X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Forigin.cpp;h=500a446c72173282a03ba658cc9e3eef81f0a913;hb=c1d953eee6c00432493bc364da6284704ccd9cc2;hp=0880c3a32d8d8f62d7fbae2599bcd215360da3f2;hpb=fc0c1337746e1fc79a07133e6154256a23922a6a;p=metaproxy-moved-to-github.git diff --git a/src/origin.cpp b/src/origin.cpp index 0880c3a..500a446 100644 --- a/src/origin.cpp +++ b/src/origin.cpp @@ -1,34 +1,64 @@ -/* $Id: origin.cpp,v 1.3 2006-09-26 13:02:50 marc Exp $ - Copyright (c) 2005-2006, Index Data. +/* This file is part of Metaproxy. + Copyright (C) 2005-2011 Index Data - See the LICENSE file for details - */ +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 +Software Foundation; either version 2, or (at your option) any later +version. + +Metaproxy is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or +FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +for more details. +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +*/ -//#include "config.hpp" -#include "origin.hpp" +#include "config.hpp" +#include #include namespace mp = metaproxy_1; -mp::Origin::Origin(std::string server_host, - unsigned int server_port) +mp::Origin::Origin(std::string listen_host, + unsigned int listen_port) : m_type(API), m_address(""), m_origin_id(0), - m_server_host(server_host), m_server_port(server_port) + m_listen_host(listen_host), m_listen_port(listen_port), m_max_sockets(0) { } -std::string mp::Origin::server_host() const +std::string mp::Origin::listen_host() const { - return m_server_host; + return m_listen_host; }; -unsigned int mp::Origin::server_port() const +std::string & mp::Origin::listen_host() { - return m_server_port; + return m_listen_host; }; +unsigned int mp::Origin::listen_port() const +{ + return m_listen_port; +}; + +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) { @@ -37,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 != "") @@ -50,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 */ +