Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Kea
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Adam Osuchowski
Kea
Commits
a3ab0e00
Commit
a3ab0e00
authored
Jun 19, 2015
by
Francis Dupont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[3882a] Updated server stuff at the exclusion of the extended version code itself
parent
52fe5e23
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
42 additions
and
0 deletions
+42
-0
src/bin/d2/Makefile.am
src/bin/d2/Makefile.am
+6
-0
src/bin/d2/d_controller.cc
src/bin/d2/d_controller.cc
+8
-0
src/bin/dhcp4/Makefile.am
src/bin/dhcp4/Makefile.am
+6
-0
src/bin/dhcp4/dhcp4_srv.cc
src/bin/dhcp4/dhcp4_srv.cc
+8
-0
src/bin/dhcp6/Makefile.am
src/bin/dhcp6/Makefile.am
+6
-0
src/bin/dhcp6/dhcp6_srv.cc
src/bin/dhcp6/dhcp6_srv.cc
+8
-0
No files found.
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