X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Frouter_chain.cpp;h=dd804051dc1024cbd4cd9f82ea6f6a3f8731470c;hb=98c084ed5dbfc41caa5fe152bf7de92151d9e03b;hp=959007b478f57bbd0563b6f160a37941ca0107b8;hpb=74d5524719194de5dc96abd552562fa473088677;p=metaproxy-moved-to-github.git diff --git a/src/router_chain.cpp b/src/router_chain.cpp index 959007b..dd80405 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-2013 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 @@ -16,7 +16,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "router_chain.hpp" +#include #include #include @@ -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() { }