X-Git-Url: http://sru.miketaylor.org.uk/?a=blobdiff_plain;f=src%2Forigin.hpp;h=6f801cf4d0a14cf873da32467216e0b5b218683c;hb=665559cbc22546e8df69be33a7d492294cab9fb1;hp=00df465ee71254bbd68163fe750f3f32bf72687d;hpb=dec223c79181a3a899c1239f3aa6c6461e177462;p=metaproxy-moved-to-github.git diff --git a/src/origin.hpp b/src/origin.hpp index 00df465..6f801cf 100644 --- a/src/origin.hpp +++ b/src/origin.hpp @@ -1,8 +1,20 @@ -/* $Id: origin.hpp,v 1.1 2006-09-26 13:04:07 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 @@ -22,17 +34,28 @@ namespace metaproxy_1 { class Origin { public: - Origin(std::string server_host = "", unsigned int server_port = 0); + Origin(std::string listen_host = "", unsigned int listen_port = 0); /// get function - right val in assignment - std::string server_host() const; - + std::string listen_host() const; + + /// set function - left val in assignment + std::string & listen_host(); + /// get function - right val in assignment - unsigned int server_port() const; + unsigned int listen_port() const; + /// set function - left val in assignment + unsigned int & listen_port(); + /// 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); @@ -43,9 +66,10 @@ namespace metaproxy_1 { TCPIP } m_type; std::string m_address; // UNIX+TCPIP - unsigned long m_origin_id; - std::string m_server_host; - unsigned int m_server_port; + unsigned int m_origin_id; + std::string m_listen_host; + unsigned int m_listen_port; + int m_max_sockets; }; } @@ -56,8 +80,9 @@ namespace metaproxy_1 { /* * 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 */ +