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
BIND
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
580
Issues
580
List
Boards
Labels
Service Desk
Milestones
Merge Requests
112
Merge Requests
112
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ISC Open Source Projects
BIND
Commits
40780aa3
Commit
40780aa3
authored
Sep 06, 2017
by
Tinderbox User
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update copyright notice / whitespace
parent
28b644f5
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
33 additions
and
15 deletions
+33
-15
bin/tests/system/serve-stale/ans2/ans.pl
bin/tests/system/serve-stale/ans2/ans.pl
+1
-1
bin/tests/system/serve-stale/clean.sh
bin/tests/system/serve-stale/clean.sh
+6
-0
bin/tests/system/serve-stale/ns1/named1.conf
bin/tests/system/serve-stale/ns1/named1.conf
+3
-3
bin/tests/system/serve-stale/ns1/named2.conf
bin/tests/system/serve-stale/ns1/named2.conf
+3
-3
bin/tests/system/serve-stale/ns1/root.db
bin/tests/system/serve-stale/ns1/root.db
+6
-0
bin/tests/system/serve-stale/ns3/named.conf
bin/tests/system/serve-stale/ns3/named.conf
+3
-3
bin/tests/system/serve-stale/setup.sh
bin/tests/system/serve-stale/setup.sh
+6
-0
bin/tests/system/serve-stale/tests.sh
bin/tests/system/serve-stale/tests.sh
+1
-1
lib/dns/include/dns/cache.h
lib/dns/include/dns/cache.h
+1
-1
lib/dns/include/dns/resolver.h
lib/dns/include/dns/resolver.h
+1
-1
lib/dns/rbtdb.c
lib/dns/rbtdb.c
+1
-1
lib/dns/tests/db_test.c
lib/dns/tests/db_test.c
+1
-1
No files found.
bin/tests/system/serve-stale/ans2/ans.pl
View file @
40780aa3
#!/usr/bin/env perl
#
# Copyright (C) 201
4-2016
Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 201
7
Internet Systems Consortium, Inc. ("ISC")
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
...
...
bin/tests/system/serve-stale/clean.sh
View file @
40780aa3
# Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
rm
-f
dig.out.test
*
rm
-f
ns1/named.conf
rm
-f
ns3/root.bk
...
...
bin/tests/system/serve-stale/ns1/named1.conf
View file @
40780aa3
...
...
@@ -7,12 +7,12 @@
*/
key
rndc_key
{
secret
"1234abcd8765"
;
algorithm
hmac
-
sha256
;
secret
"1234abcd8765"
;
algorithm
hmac
-
sha256
;
};
controls
{
inet
10
.
53
.
0
.
1
port
9953
allow
{
any
; }
keys
{
rndc_key
; };
inet
10
.
53
.
0
.
1
port
9953
allow
{
any
; }
keys
{
rndc_key
; };
};
options
{
...
...
bin/tests/system/serve-stale/ns1/named2.conf
View file @
40780aa3
...
...
@@ -7,12 +7,12 @@
*/
key
rndc_key
{
secret
"1234abcd8765"
;
algorithm
hmac
-
sha256
;
secret
"1234abcd8765"
;
algorithm
hmac
-
sha256
;
};
controls
{
inet
10
.
53
.
0
.
1
port
9953
allow
{
any
; }
keys
{
rndc_key
; };
inet
10
.
53
.
0
.
1
port
9953
allow
{
any
; }
keys
{
rndc_key
; };
};
options
{
...
...
bin/tests/system/serve-stale/ns1/root.db
View file @
40780aa3
; Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
;
; This Source Code Form is subject to the terms of the Mozilla Public
; License, v. 2.0. If a copy of the MPL was not distributed with this
; file, You can obtain one at http://mozilla.org/MPL/2.0/.
. 300 SOA . . 0 0 0 0 0
. 300 NS ns.nil.
ns.nil. 300 A 10.53.0.1
...
...
bin/tests/system/serve-stale/ns3/named.conf
View file @
40780aa3
...
...
@@ -7,12 +7,12 @@
*/
key
rndc_key
{
secret
"1234abcd8765"
;
algorithm
hmac
-
sha256
;
secret
"1234abcd8765"
;
algorithm
hmac
-
sha256
;
};
controls
{
inet
10
.
53
.
0
.
3
port
9953
allow
{
any
; }
keys
{
rndc_key
; };
inet
10
.
53
.
0
.
3
port
9953
allow
{
any
; }
keys
{
rndc_key
; };
};
options
{
...
...
bin/tests/system/serve-stale/setup.sh
View file @
40780aa3
# Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
cp
-f
ns1/named1.conf ns1/named.conf
bin/tests/system/serve-stale/tests.sh
View file @
40780aa3
#!/bin/sh
#
# Copyright (C) 20
00, 2001, 2004, 2007, 2009-2016
Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 20
17
Internet Systems Consortium, Inc. ("ISC")
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
...
...
lib/dns/include/dns/cache.h
View file @
40780aa3
/*
* Copyright (C) 1999-2001, 2004-2007, 2009, 2011-2013, 2016 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 1999-2001, 2004-2007, 2009, 2011-2013, 2016
, 2017
Internet Systems Consortium, Inc. ("ISC")
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
...
...
lib/dns/include/dns/resolver.h
View file @
40780aa3
/*
* Copyright (C) 1999-2001, 2003-201
6
Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 1999-2001, 2003-201
7
Internet Systems Consortium, Inc. ("ISC")
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
...
...
lib/dns/rbtdb.c
View file @
40780aa3
...
...
@@ -2012,7 +2012,7 @@ clean_now_or_later(dns_rbtnode_t *node, dns_rbtdb_t *rbtdb,
free_rdataset(rbtdb, mctx, header);
} else {
header->attributes |= RDATASET_ATTR_STALE |
RDATASET_ATTR_ANCIENT;
RDATASET_ATTR_ANCIENT;
node->dirty = 1;
*header_prevp = header;
}
...
...
lib/dns/tests/db_test.c
View file @
40780aa3
/*
* Copyright (C) 2013, 2015
, 2016
Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2013, 2015
-2017
Internet Systems Consortium, Inc. ("ISC")
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
...
...
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