Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Sebastian Schrader
Kea
Commits
a3ab0e00
Commit
a3ab0e00
authored
Jun 19, 2015
by
Francis Dupont
Browse files
[3882a] Updated server stuff at the exclusion of the extended version code itself
parent
52fe5e23
Changes
6
Hide whitespace changes
Inline
Side-by-side
src/bin/d2/Makefile.am
View file @
a3ab0e00
...
...
@@ -3,6 +3,12 @@ SUBDIRS = . tests
AM_CPPFLAGS
=
-I
$(top_srcdir)
/src/lib
-I
$(top_builddir)
/src/lib
AM_CPPFLAGS
+=
-I
$(top_srcdir)
/src/bin
-I
$(top_builddir)
/src/bin
AM_CPPFLAGS
+=
$(BOOST_INCLUDES)
if
HAVE_MYSQL
AM_CPPFLAGS
+=
$(MYSQL_CPPFLAGS)
endif
if
HAVE_PGSQL
AM_CPPFLAGS
+=
$(PGSQL_CPPFLAGS)
endif
AM_CXXFLAGS
=
$(KEA_CXXFLAGS)
if
USE_CLANGPP
...
...
src/bin/d2/d_controller.cc
View file @
a3ab0e00
...
...
@@ -23,6 +23,14 @@
#include <log/logger.h>
#include <cfgrpt/config_report.h>
#ifdef HAVE_MYSQL
#include <dhcpsrv/mysql_lease_mgr.h>
#endif
#ifdef HAVE_PGSQL
#include <dhcpsrv/pgsql_lease_mgr.h>
#endif
#include <dhcpsrv/memfile_lease_mgr.h>
#include <sstream>
#include <unistd.h>
...
...
src/bin/dhcp4/Makefile.am
View file @
a3ab0e00
...
...
@@ -3,6 +3,12 @@ SUBDIRS = . tests
AM_CPPFLAGS
=
-I
$(top_srcdir)
/src/lib
-I
$(top_builddir)
/src/lib
AM_CPPFLAGS
+=
-I
$(top_srcdir)
/src/bin
-I
$(top_builddir)
/src/bin
AM_CPPFLAGS
+=
$(BOOST_INCLUDES)
if
HAVE_MYSQL
AM_CPPFLAGS
+=
$(MYSQL_CPPFLAGS)
endif
if
HAVE_PGSQL
AM_CPPFLAGS
+=
$(PGSQL_CPPFLAGS)
endif
AM_CXXFLAGS
=
$(KEA_CXXFLAGS)
if
USE_CLANGPP
...
...
src/bin/dhcp4/dhcp4_srv.cc
View file @
a3ab0e00
...
...
@@ -46,6 +46,14 @@
#include <cryptolink/cryptolink.h>
#include <cfgrpt/config_report.h>
#ifdef HAVE_MYSQL
#include <dhcpsrv/mysql_lease_mgr.h>
#endif
#ifdef HAVE_PGSQL
#include <dhcpsrv/pgsql_lease_mgr.h>
#endif
#include <dhcpsrv/memfile_lease_mgr.h>
#include <asio.hpp>
#include <boost/bind.hpp>
#include <boost/foreach.hpp>
...
...
src/bin/dhcp6/Makefile.am
View file @
a3ab0e00
...
...
@@ -4,6 +4,12 @@ AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib
AM_CPPFLAGS
+=
-I
$(top_srcdir)
/src/bin
-I
$(top_builddir)
/src/bin
AM_CPPFLAGS
+=
-I
$(top_srcdir)
/src/lib/cc
-I
$(top_builddir)
/src/lib/cc
AM_CPPFLAGS
+=
$(BOOST_INCLUDES)
if
HAVE_MYSQL
AM_CPPFLAGS
+=
$(MYSQL_CPPFLAGS)
endif
if
HAVE_PGSQL
AM_CPPFLAGS
+=
$(PGSQL_CPPFLAGS)
endif
AM_CXXFLAGS
=
$(KEA_CXXFLAGS)
if
USE_CLANGPP
...
...
src/bin/dhcp6/dhcp6_srv.cc
View file @
a3ab0e00
...
...
@@ -53,6 +53,14 @@
#include <cryptolink/cryptolink.h>
#include <cfgrpt/config_report.h>
#ifdef HAVE_MYSQL
#include <dhcpsrv/mysql_lease_mgr.h>
#endif
#ifdef HAVE_PGSQL
#include <dhcpsrv/pgsql_lease_mgr.h>
#endif
#include <dhcpsrv/memfile_lease_mgr.h>
#include <asio.hpp>
#include <boost/bind.hpp>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment