X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Frouter_chain.cpp;h=fa4385ff086aa16f413c972f748a155e86c66f9a;hb=793996694632f95053e1ebf6c9a8f30fd38af9d0;hp=959007b478f57bbd0563b6f160a37941ca0107b8;hpb=74d5524719194de5dc96abd552562fa473088677;p=metaproxy-moved-to-github.git diff --git a/src/router_chain.cpp b/src/router_chain.cpp index 959007b..fa4385f 100644 --- a/src/router_chain.cpp +++ b/src/router_chain.cpp @@ -1,5 +1,5 @@ /* This file is part of Metaproxy. - Copyright (C) 2005-2010 Index Data + Copyright (C) 2005-2012 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 @@ -58,6 +58,14 @@ void mp::RouterChain::start() (*it)->start(); } +void mp::RouterChain::stop() +{ + std::list::const_iterator it; + + for (it = m_p->m_filter_list.begin(); it != m_p->m_filter_list.end(); it++) + (*it)->stop(); +} + const mp::filter::Base *mp::RouterChain::Pos::move(const char *route) { if (it == m_p->m_filter_list.end()) @@ -83,7 +91,6 @@ mp::RoutePos *mp::RouterChain::Pos::clone() return p; } - mp::RouterChain::Pos::~Pos() { }