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
Sebastian Schrader
Kea
Commits
1ec7e1cc
Commit
1ec7e1cc
authored
Apr 06, 2011
by
Jelte Jansen
Browse files
Options
Browse Files
Download
Plain Diff
[master] Merge branch 'trac602'
Conflicts: src/bin/auth/auth_srv.h
parents
6c611b5c
8d3f576c
Changes
18
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
44 additions
and
18 deletions
+44
-18
src/bin/auth/Makefile.am
src/bin/auth/Makefile.am
+1
-1
src/bin/auth/auth_config.cc
src/bin/auth/auth_config.cc
+1
-1
src/bin/auth/auth_config.h
src/bin/auth/auth_config.h
+0
-0
src/bin/auth/auth_srv.cc
src/bin/auth/auth_srv.cc
+1
-1
src/bin/auth/auth_srv.h
src/bin/auth/auth_srv.h
+9
-0
src/bin/auth/benchmarks/Makefile.am
src/bin/auth/benchmarks/Makefile.am
+1
-1
src/bin/auth/benchmarks/query_bench.cc
src/bin/auth/benchmarks/query_bench.cc
+3
-1
src/bin/auth/main.cc
src/bin/auth/main.cc
+3
-1
src/bin/auth/tests/Makefile.am
src/bin/auth/tests/Makefile.am
+1
-1
src/bin/auth/tests/command_unittest.cc
src/bin/auth/tests/command_unittest.cc
+3
-1
src/bin/auth/tests/config_unittest.cc
src/bin/auth/tests/config_unittest.cc
+1
-1
src/bin/resolver/main.cc
src/bin/resolver/main.cc
+2
-0
src/bin/resolver/resolver.h
src/bin/resolver/resolver.h
+10
-2
src/bin/resolver/tests/resolver_config_unittest.cc
src/bin/resolver/tests/resolver_config_unittest.cc
+2
-0
src/lib/nsas/locks.h
src/lib/nsas/locks.h
+0
-5
src/lib/resolve/resolver_callback.h
src/lib/resolve/resolver_callback.h
+3
-1
src/lib/resolve/tests/resolver_callback_unittest.cc
src/lib/resolve/tests/resolver_callback_unittest.cc
+1
-1
src/lib/testutils/srv_test.cc
src/lib/testutils/srv_test.cc
+2
-0
No files found.
src/bin/auth/Makefile.am
View file @
1ec7e1cc
...
...
@@ -39,7 +39,7 @@ pkglibexec_PROGRAMS = b10-auth
b10_auth_SOURCES
=
query.cc query.h
b10_auth_SOURCES
+=
auth_srv.cc auth_srv.h
b10_auth_SOURCES
+=
change_user.cc change_user.h
b10_auth_SOURCES
+=
config.cc
config.h
b10_auth_SOURCES
+=
auth_config.cc auth_
config.h
b10_auth_SOURCES
+=
command.cc command.h
b10_auth_SOURCES
+=
common.h
b10_auth_SOURCES
+=
statistics.cc statistics.h
...
...
src/bin/auth/config.cc
→
src/bin/auth/
auth_
config.cc
View file @
1ec7e1cc
...
...
@@ -29,7 +29,7 @@
#include <datasrc/zonetable.h>
#include <auth/auth_srv.h>
#include <auth/config.h>
#include <auth/
auth_
config.h>
#include <auth/common.h>
#include <server_common/portconfig.h>
...
...
src/bin/auth/config.h
→
src/bin/auth/
auth_
config.h
View file @
1ec7e1cc
File moved
src/bin/auth/auth_srv.cc
View file @
1ec7e1cc
...
...
@@ -52,7 +52,7 @@
#include <xfr/xfrout_client.h>
#include <auth/common.h>
#include <auth/config.h>
#include <auth/
auth_
config.h>
#include <auth/auth_srv.h>
#include <auth/query.h>
#include <auth/statistics.h>
...
...
src/bin/auth/auth_srv.h
View file @
1ec7e1cc
...
...
@@ -23,6 +23,15 @@
#include <cc/data.h>
#include <config/ccsession.h>
#include <dns/message.h>
#include <dns/buffer.h>
#include <asiolink/io_message.h>
#include <asiolink/io_service.h>
#include <asiolink/dns_server.h>
#include <asiolink/dns_lookup.h>
#include <asiolink/dns_answer.h>
#include <asiolink/simple_callback.h>
#include <asiolink/asiolink.h>
#include <server_common/portconfig.h>
...
...
src/bin/auth/benchmarks/Makefile.am
View file @
1ec7e1cc
...
...
@@ -10,7 +10,7 @@ noinst_PROGRAMS = query_bench
query_bench_SOURCES
=
query_bench.cc
query_bench_SOURCES
+=
../query.h ../query.cc
query_bench_SOURCES
+=
../auth_srv.h ../auth_srv.cc
query_bench_SOURCES
+=
../
config.h ../
config.cc
query_bench_SOURCES
+=
../
auth_config.h ../auth_
config.cc
query_bench_SOURCES
+=
../statistics.h ../statistics.cc
query_bench_LDADD
=
$(top_builddir)
/src/lib/dns/libdns++.la
...
...
src/bin/auth/benchmarks/query_bench.cc
View file @
1ec7e1cc
...
...
@@ -12,6 +12,8 @@
// OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
// PERFORMANCE OF THIS SOFTWARE.
#include <config.h>
#include <stdlib.h>
#include <iostream>
...
...
@@ -31,7 +33,7 @@
#include <xfr/xfrout_client.h>
#include <auth/auth_srv.h>
#include <auth/config.h>
#include <auth/
auth_
config.h>
#include <auth/query.h>
#include <asiolink/asiolink.h>
...
...
src/bin/auth/main.cc
View file @
1ec7e1cc
...
...
@@ -12,6 +12,8 @@
// OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
// PERFORMANCE OF THIS SOFTWARE.
#include <config.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/select.h>
...
...
@@ -37,7 +39,7 @@
#include <auth/spec_config.h>
#include <auth/common.h>
#include <auth/config.h>
#include <auth/
auth_
config.h>
#include <auth/command.h>
#include <auth/change_user.h>
#include <auth/auth_srv.h>
...
...
src/bin/auth/tests/Makefile.am
View file @
1ec7e1cc
...
...
@@ -22,7 +22,7 @@ run_unittests_SOURCES += $(top_srcdir)/src/lib/dns/tests/unittest_util.cc
run_unittests_SOURCES
+=
../auth_srv.h ../auth_srv.cc
run_unittests_SOURCES
+=
../query.h ../query.cc
run_unittests_SOURCES
+=
../change_user.h ../change_user.cc
run_unittests_SOURCES
+=
../
config.h ../
config.cc
run_unittests_SOURCES
+=
../
auth_config.h ../auth_
config.cc
run_unittests_SOURCES
+=
../command.h ../command.cc
run_unittests_SOURCES
+=
../statistics.h ../statistics.cc
run_unittests_SOURCES
+=
auth_srv_unittest.cc
...
...
src/bin/auth/tests/command_unittest.cc
View file @
1ec7e1cc
...
...
@@ -12,6 +12,8 @@
// OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
// PERFORMANCE OF THIS SOFTWARE.
#include <config.h>
#include <cassert>
#include <cstdlib>
#include <string>
...
...
@@ -32,7 +34,7 @@
#include <datasrc/memory_datasrc.h>
#include <auth/auth_srv.h>
#include <auth/config.h>
#include <auth/
auth_
config.h>
#include <auth/command.h>
#include <asiolink/asiolink.h>
...
...
src/bin/auth/tests/config_unittest.cc
View file @
1ec7e1cc
...
...
@@ -26,7 +26,7 @@
#include <xfr/xfrout_client.h>
#include <auth/auth_srv.h>
#include <auth/config.h>
#include <auth/
auth_
config.h>
#include <auth/common.h>
#include <testutils/mockups.h>
...
...
src/bin/resolver/main.cc
View file @
1ec7e1cc
...
...
@@ -12,6 +12,8 @@
// OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
// PERFORMANCE OF THIS SOFTWARE.
#include <config.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/select.h>
...
...
src/bin/resolver/resolver.h
View file @
1ec7e1cc
...
...
@@ -21,8 +21,16 @@
#include <cc/data.h>
#include <config/ccsession.h>
#include <asiolink/asiolink.h>
#include <dns/message.h>
#include <dns/buffer.h>
#include <asiolink/io_message.h>
#include <asiolink/io_service.h>
#include <asiolink/dns_server.h>
#include <asiolink/dns_service.h>
#include <asiolink/dns_lookup.h>
#include <asiolink/dns_answer.h>
#include <asiolink/simple_callback.h>
#include <nsas/nameserver_address_store.h>
#include <cache/resolver_cache.h>
...
...
src/bin/resolver/tests/resolver_config_unittest.cc
View file @
1ec7e1cc
...
...
@@ -12,6 +12,8 @@
// OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
// PERFORMANCE OF THIS SOFTWARE.
#include <config.h>
#include <string>
#include <gtest/gtest.h>
...
...
src/lib/nsas/locks.h
View file @
1ec7e1cc
...
...
@@ -26,11 +26,6 @@
/// Note that we need to include <config.h> in our .cc files for that
/// to be set. we might want to enfore this at compile time with a check
/// (TODO)
/// Note that this also contains a workaround for Sunstudio; which
/// probably won't completely work right now (that is, if the TODO
/// above is completed), since that would also require some changes
/// in most (at first glance unrelated) Makefiles
/// (TODO2)
#ifndef __LOCKS_
#define __LOCKS_
...
...
src/lib/resolve/resolver_callback.h
View file @
1ec7e1cc
...
...
@@ -15,9 +15,11 @@
#ifndef _ISC_RESOLVER_CALLBACK_H
#define _ISC_RESOLVER_CALLBACK_H 1
#include <asiolink/
asiolink
.h>
#include <asiolink/
dns_server
.h>
#include <dns/message.h>
#include <resolve/resolver_interface.h>
namespace
isc
{
namespace
resolve
{
...
...
src/lib/resolve/tests/resolver_callback_unittest.cc
View file @
1ec7e1cc
...
...
@@ -13,8 +13,8 @@
// PERFORMANCE OF THIS SOFTWARE.
#include <gtest/gtest.h>
#include <asiolink/dns_server.h>
#include <resolve/resolver_callback.h>
#include <asiolink/asiolink.h>
using
namespace
isc
::
resolve
;
...
...
src/lib/testutils/srv_test.cc
View file @
1ec7e1cc
...
...
@@ -12,6 +12,8 @@
// OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
// PERFORMANCE OF THIS SOFTWARE.
#include <config.h>
#include <netinet/in.h>
#include <dns/message.h>
...
...
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