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
637
Issues
637
List
Boards
Labels
Service Desk
Milestones
Merge Requests
104
Merge Requests
104
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
601645a1
Commit
601645a1
authored
Jun 22, 2016
by
Tinderbox User
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update copyright notice / whitespace
parent
cdf1c3d4
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
13 additions
and
13 deletions
+13
-13
bin/named/client.c
bin/named/client.c
+1
-1
bin/named/include/named/server.h
bin/named/include/named/server.h
+1
-1
bin/tests/system/catz/ns1/named.conf
bin/tests/system/catz/ns1/named.conf
+2
-2
bin/tests/system/catz/ns2/named.conf.in
bin/tests/system/catz/ns2/named.conf.in
+2
-2
bin/tests/system/statschannel/server-json.pl
bin/tests/system/statschannel/server-json.pl
+1
-1
bin/tests/system/statschannel/traffic-json.pl
bin/tests/system/statschannel/traffic-json.pl
+1
-1
bin/tests/system/statschannel/traffic-xml.pl
bin/tests/system/statschannel/traffic-xml.pl
+1
-1
lib/dns/include/dns/stats.h
lib/dns/include/dns/stats.h
+1
-1
lib/dns/stats.c
lib/dns/stats.c
+2
-2
lib/isc/random.c
lib/isc/random.c
+1
-1
No files found.
bin/named/client.c
View file @
601645a1
...
...
@@ -1199,7 +1199,7 @@ client_send(ns_client_t *client) {
}
#endif
/* HAVE_DNSTAP */
switch
(
isc_sockaddr_pf
(
&
client
->
peeraddr
))
{
case
AF_INET
:
isc_stats_increment
(
ns_g_server
->
tcpoutstats4
,
...
...
bin/named/include/named/server.h
View file @
601645a1
/*
* Copyright (C) 2004-201
5
Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2004-201
6
Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 1999-2003 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
...
...
bin/tests/system/catz/ns1/named.conf
View file @
601645a1
...
...
@@ -64,6 +64,6 @@ zone "catalog4.example" {
/*
catalog5
is
missing
on
purpose
*/
key
tsig_key
. {
secret
"LSAnCU+Z"
;
algorithm
hmac
-
md5
;
secret
"LSAnCU+Z"
;
algorithm
hmac
-
md5
;
};
bin/tests/system/catz/ns2/named.conf.in
View file @
601645a1
...
...
@@ -74,6 +74,6 @@ zone "catalog4.example" {
};
key tsig_key. {
secret "LSAnCU+Z";
algorithm hmac-md5;
secret "LSAnCU+Z";
algorithm hmac-md5;
};
bin/tests/system/statschannel/server-json.pl
View file @
601645a1
#!/usr/bin/perl
#
# Copyright (C) 2015 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2015
, 2016
Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
...
...
bin/tests/system/statschannel/traffic-json.pl
View file @
601645a1
#!/usr/bin/perl
#
# Copyright (C) 2015 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2015
, 2016
Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
...
...
bin/tests/system/statschannel/traffic-xml.pl
View file @
601645a1
#!/usr/bin/perl
#
# Copyright (C) 2015 Internet Systems Consortium, Inc. ("ISC")
# Copyright (C) 2015
, 2016
Internet Systems Consortium, Inc. ("ISC")
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
...
...
lib/dns/include/dns/stats.h
View file @
601645a1
/*
* Copyright (C) 2004-2009, 2012, 2014
, 2015
Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2004-2009, 2012, 2014
-2016
Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000, 2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
...
...
lib/dns/stats.c
View file @
601645a1
/*
* Copyright (C) 2004, 2005, 2007-2009, 2012 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2004, 2005, 2007-2009, 2012
, 2016
Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2000, 2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
...
...
@@ -299,7 +299,7 @@ void
dns_rcodestats_increment
(
dns_stats_t
*
stats
,
dns_rcode_t
code
)
{
REQUIRE
(
DNS_STATS_VALID
(
stats
)
&&
stats
->
type
==
dns_statstype_rcode
);
if
(
code
<=
dns_rcode_badcookie
)
if
(
code
<=
dns_rcode_badcookie
)
isc_stats_increment
(
stats
->
counters
,
(
isc_statscounter_t
)
code
);
}
...
...
lib/isc/random.c
View file @
601645a1
/*
* Copyright (C) 2004, 2005, 2007, 2009, 2013, 2014 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2004, 2005, 2007, 2009, 2013, 2014
, 2016
Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 1999-2003 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
...
...
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