X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=src%2Fpackage.hpp;h=3fb632b55636018f4094b811c15cc5f4f4ebb012;hb=e1c7fdb3e2ff41fb43ea3dd2c540b6d568dee851;hp=60855db5d811d37063bc44e69d85f697c43c1d53;hpb=79100c2ae2dac4bdde4f4d46b69e147562b4ec6c;p=metaproxy-moved-to-github.git diff --git a/src/package.hpp b/src/package.hpp index 60855db..3fb632b 100644 --- a/src/package.hpp +++ b/src/package.hpp @@ -1,32 +1,49 @@ -/* $Id: package.hpp,v 1.15 2006-03-16 10:40:59 adam Exp $ +/* $Id: package.hpp,v 1.22 2006-08-30 10:48:52 adam Exp $ Copyright (c) 2005-2006, Index Data. -%LICENSE% + See the LICENSE file for details */ #ifndef YP2_PACKAGE_HPP #define YP2_PACKAGE_HPP -#include +#include #include -#include +#include #include "router.hpp" #include "filter.hpp" #include "session.hpp" +namespace metaproxy_1 +{ + class Origin; + class Package; +} + + +namespace std +{ + std::ostream& operator<<(std::ostream& os, metaproxy_1::Origin& o); + std::ostream& operator<<(std::ostream& os, metaproxy_1::Package& p); +} + namespace metaproxy_1 { class Origin { + friend std::ostream& + std::operator<<(std::ostream& os, metaproxy_1::Origin& o); + enum origin_t { API, UNIX, TCPIP } type; std::string address; // UNIX+TCPIP - int port; // TCPIP only + unsigned long origin_id; public: - Origin() : type(API) {}; + Origin(); + void set_tcpip_address(std::string addr, unsigned long id); }; class Package { @@ -35,7 +52,8 @@ namespace metaproxy_1 { ~Package(); - Package(metaproxy_1::Session &session, metaproxy_1::Origin &origin); + Package(metaproxy_1::Session &session, + const metaproxy_1::Origin &origin); Package & copy_filter(const Package &p); @@ -88,6 +106,8 @@ namespace metaproxy_1 { }; } + + #endif /* * Local variables: