2  *    This program is free software; you can redistribute it and/or modify
 
   3  *    it under the terms of the GNU General Public License as published by
 
   4  *    the Free Software Foundation; either version 2 of the License, or
 
   5  *    (at your option) any later version.
 
   7  *    This program is distributed in the hope that it will be useful,
 
   8  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
   9  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
  10  *    GNU General Public License for more details.
 
  12  *    You should have received a copy of the GNU General Public License
 
  13  *    along with this program; if not, write to the Free Software
 
  14  *    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
  19  Author : Boris Mikhailenko <stg34@stg.dp.ua>
 
  24 #include "stg/plugin.h"
 
  25 #include "stg/module_settings.h"
 
  26 #include "stg/logger.h"
 
  29 #pragma GCC diagnostic push
 
  30 #pragma GCC diagnostic ignored "-Wshadow"
 
  31 #include <jthread.hpp>
 
  32 #pragma GCC diagnostic pop
 
  43 //-----------------------------------------------------------------------------
 
  44 class DIVERT_CAP : public STG::Plugin {
 
  48     void                SetTraffcounter(STG::TraffCounter * tc) override { traffCnt = tc; }
 
  52     int                 Reload(const STG::ModuleSettings & /*ms*/) override { return 0; }
 
  53     bool                IsRunning() override { return isRunning; }
 
  55     void                SetSettings(const STG::ModuleSettings & s) override { settings = s; }
 
  56     int                 ParseSettings() override;
 
  57     const std::string & GetStrError() const override { return errorStr; }
 
  58     std::string         GetVersion() const override;
 
  59     uint16_t            GetStartPosition() const override { return 40; }
 
  60     uint16_t            GetStopPosition() const override { return 40; }
 
  63     DIVERT_CAP(const DIVERT_CAP & rvalue);
 
  64     DIVERT_CAP & operator=(const DIVERT_CAP & rvalue);
 
  66     void                Run(std::stop_token token) noexcept;
 
  69     int                 DivertCapOpen(int n);
 
  70     int                 DivertCapRead(char * buffer, int blen, char ** iface);
 
  71     int                 DivertCapRead(char * buffer, int blen, char ** iface, int n);
 
  74     STG::ModuleSettings     settings;
 
  77     bool                disableForwarding;
 
  79     mutable std::string errorStr;
 
  81     std::jthread        m_thread;
 
  85     STG::TraffCounter *      traffCnt;
 
  87     STG::PluginLogger       logger;