]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[3681] Minor updates to the MySqlConnection.
authorMarcin Siodelski <marcin@isc.org>
Fri, 28 Aug 2015 07:51:38 +0000 (09:51 +0200)
committerMarcin Siodelski <marcin@isc.org>
Fri, 28 Aug 2015 07:51:38 +0000 (09:51 +0200)
src/lib/dhcpsrv/mysql_connection.cc
src/lib/dhcpsrv/mysql_connection.h

index 138dc78fcf9c70e3e83f106a37698c743670a0f6..b9d3e05e68e65c7a37023d3df566fe792b0d6eb1 100755 (executable)
 #include <dhcpsrv/mysql_connection.h>
 #include <exceptions/exceptions.h>
 
-#include <boost/foreach.hpp>
-#include <boost/algorithm/string.hpp>
-
 #include <algorithm>
 #include <iostream>
 #include <iterator>
-#include <map>
-#include <sstream>
+#include <stdint.h>
 #include <string>
 
-#include <time.h>
-
 using namespace isc;
 using namespace isc::dhcp;
 using namespace std;
index 9ca68d901f7ef9bbb6b1d6dac42635e3e44db3dc..0824d4955aba84839a2ba400b1ebcb387781c9e3 100755 (executable)
 #ifndef MYSQL_CONNECTION_H
 #define MYSQL_CONNECTION_H
 
-#include <dhcp/hwaddr.h>
-#include <dhcpsrv/lease_mgr.h>
 #include <dhcpsrv/database_connection.h>
 #include <boost/scoped_ptr.hpp>
 #include <mysql.h>
-
-#include <time.h>
+#include <vector>
 
 namespace isc {
 namespace dhcp {