source: nscp/modules/NSCPServer/stdafx.h @ 465866c

0.4.10.4.2
Last change on this file since 465866c was 465866c, checked in by Michael Medin <michael@…>, 12 months ago

2012-06-05 MickeM

  • Tweaked all servers to use the new internals and added first testcase for NSCP socket

2012-05-24 MickeM

  • Reworked real time event log support to be a lot more flexible You can now specify all options on a "filter" level.
  • WARNING* Old syntax NOT supported (and will not upgrade) but hopefully not to many will be affected.
  • Added support for ipv6 allowed hosts validation

2012-05-21 MickeM

  • Sofia Born (My second daughter)
  • Property mode set to 100644
File size: 2.2 KB
Line 
1/**************************************************************************
2*   Copyright (C) 2004-2007 by Michael Medin <michael@medin.name>         *
3*                                                                         *
4*   This code is part of NSClient++ - http://trac.nakednuns.org/nscp      *
5*                                                                         *
6*   This program is free software; you can redistribute it and/or modify  *
7*   it under the terms of the GNU General Public License as published by  *
8*   the Free Software Foundation; either version 2 of the License, or     *
9*   (at your option) any later version.                                   *
10*                                                                         *
11*   This program is distributed in the hope that it will be useful,       *
12*   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
13*   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
14*   GNU General Public License for more details.                          *
15*                                                                         *
16*   You should have received a copy of the GNU General Public License     *
17*   along with this program; if not, write to the                         *
18*   Free Software Foundation, Inc.,                                       *
19*   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
20***************************************************************************/
21#pragma once
22
23#ifdef WINDOWS
24include <Windows.h>
25#endif
26
27#include <string>
28#include <functional>
29#include <map>
30#include <vector>
31
32#include <boost/thread.hpp>
33#include <boost/bind.hpp>
34#include <boost/shared_ptr.hpp>
35#include <boost/array.hpp>
36#include <boost/asio.hpp>
37#include <boost/optional.hpp>
38#include <boost/bind.hpp>
39#include <boost/logic/tribool.hpp>
40#include <boost/utility.hpp>
41#include <boost/tuple/tuple.hpp>
42
43#include <boost/filesystem.hpp>
44
45#ifdef USE_SSL
46#include <boost/asio/ssl.hpp>
47#endif
48
49#include <strEx.h>
50#include <utils.h>
51
52#include <types.hpp>
53#include <NSCAPI.h>
54#include <nscapi/plugin.hpp>
55#include <nrpe/packet.hpp>
56
Note: See TracBrowser for help on using the repository browser.