X-Git-Url: http://lists.indexdata.com/cgi-bin?a=blobdiff_plain;f=src%2Forigin.hpp;h=4e735f8c1220f9ea3d36af5120a944457f4b87c5;hb=09ce8a48eb9d2947cd019f9b8adb6513941c2211;hp=8799ff903e77f06eba3ac46520ef67c23e3832fc;hpb=5f2548e1ed0e214ad7f921e292fc23224cf4cff4;p=metaproxy-moved-to-github.git diff --git a/src/origin.hpp b/src/origin.hpp index 8799ff9..4e735f8 100644 --- a/src/origin.hpp +++ b/src/origin.hpp @@ -1,8 +1,20 @@ -/* $Id: origin.hpp,v 1.2 2006-10-02 12:01:06 marc Exp $ - Copyright (c) 2005-2006, 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 +*/ #ifndef YP2_ORIGIN_HPP #define YP2_ORIGIN_HPP @@ -39,6 +51,11 @@ namespace metaproxy_1 { /// set client IP info - left val in assignment void set_tcpip_address(std::string addr, unsigned long id); + /// set max sockets (for outgoing connections to a given target) + void set_max_sockets(int max_sockets); + + /// set max sockets (for outgoing connections to a given target) + int get_max_sockets(); private: friend std::ostream& std::operator<<(std::ostream& os, metaproxy_1::Origin& o); @@ -52,6 +69,7 @@ namespace metaproxy_1 { unsigned int m_origin_id; std::string m_listen_host; unsigned int m_listen_port; + int m_max_sockets; }; }