X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Forigin.cpp;h=40716c4a0052dcb3ab9c731c206dd2773f7d40f5;hb=67345bf565259ce40259abbae89f98907369e645;hp=758134d0314cf29bfea7684cfc2ba14f5dc78e49;hpb=b70b9ec78f0ab1c3ed3b432de986159129a0e4ed;p=metaproxy-moved-to-github.git diff --git a/src/origin.cpp b/src/origin.cpp index 758134d..40716c4 100644 --- a/src/origin.cpp +++ b/src/origin.cpp @@ -1,9 +1,20 @@ -/* $Id: origin.cpp,v 1.5 2007-01-25 14:05:54 adam Exp $ - Copyright (c) 2005-2007, Index Data. +/* This file is part of Metaproxy. + Copyright (C) 2005-2008 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" @@ -15,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) { } @@ -39,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) { @@ -61,8 +80,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 */ +