/ src / libserver / systemdserver.h
systemdserver.h
 1  /*
 2      EIBD eib bus access and management daemon
 3      Copyright (C) 2015 Marc Joliet <marcec@gmx.de>
 4  
 5      This program is free software; you can redistribute it and/or modify
 6      it under the terms of the GNU General Public License as published by
 7      the Free Software Foundation; either version 2 of the License, or
 8      (at your option) any later version.
 9  
10      This program is distributed in the hope that it will be useful,
11      but WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13      GNU General Public License for more details.
14  
15      You should have received a copy of the GNU General Public License
16      along with this program; if not, write to the Free Software
17      Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18  */
19  
20  /**
21   * @file
22   * @addtogroup Server
23   * @{
24   */
25  
26  #ifndef KNXD_LIBSERVER_SYSTEMDSERVER_H
27  #define KNXD_LIBSERVER_SYSTEMDSERVER_H
28  
29  #include "server.h"
30  
31  /** implements a server listening on a systemd provided file descriptor */
32  class SystemdServer:public NetServer
33  {
34  public:
35    SystemdServer (BaseRouter& r, IniSectionPtr& s, int systemd_fd);
36    virtual ~SystemdServer ();
37  
38    void start();
39    void stop(bool err);
40  };
41  
42  #endif
43  
44  /** @} */