X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Forigin.cpp;h=fbc1553e6edf92af96b206c6b35fb5017efe35da;hb=19a8cbdf62b7307503fd4213a5b9626ec0d88f1c;hp=0def0143e43683cbb94b3e6a4b1e318172b2988d;hpb=daae7f857790a8826c1db2f0452c0a7d0ebb15e5;p=metaproxy-moved-to-github.git diff --git a/src/origin.cpp b/src/origin.cpp index 0def014..fbc1553 100644 --- a/src/origin.cpp +++ b/src/origin.cpp @@ -1,44 +1,76 @@ -/* $Id: origin.cpp,v 1.1 2006-08-30 10:48:52 adam Exp $ - Copyright (c) 2005-2006, Index Data. +/* This file is part of Metaproxy. + Copyright (C) 2005-2013 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 "package.hpp" +#include #include namespace mp = metaproxy_1; -mp::Origin::Origin() : type(API) -{ - origin_id = 0; +mp::Origin::Origin() : m_address(""), m_origin_id(0), m_max_sockets(0) +{ +} + +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) { - address = addr; - origin_id = s; - type = TCPIP; + m_address = addr; + m_origin_id = s; } -std::ostream& std::operator<<(std::ostream& os, mp::Origin& o) +void mp::Origin::set_custom_session(const std::string &s) { - if (o.address != "") - os << o.address; + m_custom_session = s; +} + +std::string mp::Origin::get_address() +{ + return m_address; +} + +std::ostream& std::operator<<(std::ostream& os, const mp::Origin& o) +{ + if (o.m_address.length()) + os << o.m_address; else os << "0"; - os << ":" << o.origin_id; + os << ":" << o.m_origin_id; + if (o.m_custom_session.length()) + os << ":" << o.m_custom_session; return os; } - + /* * 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 */ +