Changeset 1985
- Timestamp:
- 02/07/11 10:39:22 (2 years ago)
- Location:
- trunk/pdns/modules
- Files:
-
- 16 modified
-
db2backend/DB2Backend.cc (modified) (1 diff)
-
db2backend/DB2Backend.hh (modified) (1 diff)
-
db2backend/DB2Exception.hh (modified) (1 diff)
-
geobackend/geobackend.hh (modified) (1 diff)
-
geobackend/ippreftree.hh (modified) (1 diff)
-
goraclebackend/goraclebackend.cc (modified) (1 diff)
-
goraclebackend/goraclebackend.hh (modified) (1 diff)
-
goraclebackend/soracle.cc (modified) (1 diff)
-
mydnsbackend/mydnsbackend.cc (modified) (1 diff)
-
mydnsbackend/mydnsbackend.hh (modified) (1 diff)
-
oraclebackend/oraclebackend.cc (modified) (1 diff)
-
oraclebackend/oraclebackend.hh (modified) (1 diff)
-
pdnsbackend/pdnsbackend.cc (modified) (1 diff)
-
pdnsbackend/pdnsbackend.hh (modified) (1 diff)
-
xdbbackend/xgdbm.cc (modified) (1 diff)
-
xdbbackend/xtdb.cc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/pdns/modules/db2backend/DB2Backend.cc
r1976 r1985 6 6 #include <sstream> 7 7 8 #include " namespaces.hh"8 #include "pdns/namespaces.hh" 9 9 10 10 #include <dns.hh> -
trunk/pdns/modules/db2backend/DB2Backend.hh
r1976 r1985 7 7 #include <map> 8 8 9 #include " namespaces.hh"9 #include "pdns/namespaces.hh" 10 10 11 11 #include <sqlcli1.h> -
trunk/pdns/modules/db2backend/DB2Exception.hh
r1976 r1985 6 6 #include <string> 7 7 8 #include " namespaces.hh"8 #include "pdns/namespaces.hh" 9 9 10 10 #include <sqlcli1.h> -
trunk/pdns/modules/geobackend/geobackend.hh
r1976 r1985 16 16 #include "ippreftree.hh" 17 17 18 #include " namespaces.hh"18 #include "pdns/namespaces.hh" 19 19 20 20 class GeoRecord { -
trunk/pdns/modules/geobackend/ippreftree.hh
r1976 r1985 11 11 #include <stdint.h> 12 12 13 #include " namespaces.hh"13 #include "pdns/namespaces.hh" 14 14 15 15 // Use old style C structs for efficiency -
trunk/pdns/modules/goraclebackend/goraclebackend.cc
r1976 r1985 3 3 #include <map> 4 4 5 #include " namespaces.hh"5 #include "pdns/namespaces.hh" 6 6 7 7 #include "pdns/dns.hh" -
trunk/pdns/modules/goraclebackend/goraclebackend.hh
r1976 r1985 4 4 #include "pdns/backends/gsql/gsqlbackend.hh" 5 5 6 #include " namespaces.hh"6 #include "pdns/namespaces.hh" 7 7 8 8 /** The gOracleBackend is a DNSBackend that can answer DNS related questions. It looks up data -
trunk/pdns/modules/goraclebackend/soracle.cc
r1976 r1985 9 9 #include "pdns/dns.hh" 10 10 #include <regex.h> 11 #include " namespaces.hh"11 #include "pdns/namespaces.hh" 12 12 13 13 bool SOracle::s_dolog; -
trunk/pdns/modules/mydnsbackend/mydnsbackend.cc
r1976 r1985 25 25 #include <sstream> 26 26 27 #include " namespaces.hh"27 #include "pdns/namespaces.hh" 28 28 29 29 #include <pdns/dns.hh> -
trunk/pdns/modules/mydnsbackend/mydnsbackend.hh
r1976 r1985 5 5 #include <map> 6 6 7 #include " namespaces.hh"7 #include "pdns/namespaces.hh" 8 8 9 9 #include <modules/gmysqlbackend/smysql.hh> -
trunk/pdns/modules/oraclebackend/oraclebackend.cc
r1976 r1985 12 12 #include <string> 13 13 14 #include " namespaces.hh"14 #include "pdns/namespaces.hh" 15 15 16 16 #include "pdns/dns.hh" -
trunk/pdns/modules/oraclebackend/oraclebackend.hh
r1976 r1985 7 7 #include <oci.h> 8 8 9 #include " namespaces.hh"9 #include "pdns/namespaces.hh" 10 10 11 11 class OracleException : public DBException -
trunk/pdns/modules/pdnsbackend/pdnsbackend.cc
r1976 r1985 7 7 #include <sstream> 8 8 9 #include " namespaces.hh"9 #include "pdns/namespaces.hh" 10 10 11 11 #include <pdns/dns.hh> -
trunk/pdns/modules/pdnsbackend/pdnsbackend.hh
r1976 r1985 7 7 #include <map> 8 8 9 #include " namespaces.hh"9 #include "pdns/namespaces.hh" 10 10 11 11 #include <mysql.h> -
trunk/pdns/modules/xdbbackend/xgdbm.cc
r1976 r1985 7 7 #include <iostream> 8 8 9 #include " namespaces.hh"9 #include "pdns/namespaces.hh" 10 10 11 11 GDBM_FILE XGDBMWrapper::s_db; -
trunk/pdns/modules/xdbbackend/xtdb.cc
r1976 r1985 10 10 11 11 12 #include " namespaces.hh"12 #include "pdns/namespaces.hh" 13 13 14 14 TDB_CONTEXT *XTDBWrapper::s_db;