X-Git-Url: http://lists.indexdata.dk/cgi-bin?a=blobdiff_plain;f=include%2Fmetaproxy%2Ffilter.hpp;h=5cf79f358aae9ee8b3f32851a3979197619112e6;hb=af17ce65db77bb9b783c44decd5976b4bb0f50dd;hp=a3310ec32ed95e93b80555af262730cf66d6fc2d;hpb=c1d953eee6c00432493bc364da6284704ccd9cc2;p=metaproxy-moved-to-github.git diff --git a/include/metaproxy/filter.hpp b/include/metaproxy/filter.hpp index a3310ec..5cf79f3 100644 --- a/include/metaproxy/filter.hpp +++ b/include/metaproxy/filter.hpp @@ -1,5 +1,5 @@ /* This file is part of Metaproxy. - Copyright (C) 2005-2011 Index Data + Copyright (C) Index Data 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 @@ -32,14 +32,17 @@ namespace metaproxy_1 { class Base { public: virtual ~Base(){}; - + ///sends Package off to next Filter, returns altered Package virtual void process(Package & package) const = 0; - /// configuration during filter load - virtual void configure(const xmlNode * ptr, bool test_only); + /// configuration during filter load + virtual void configure(const xmlNode * ptr, bool test_only, + const char *path) = 0; virtual void start() const; + + virtual void stop(int signo) const; }; class FilterException : public std::runtime_error {