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
451
Issues
451
List
Boards
Labels
Service Desk
Milestones
Merge Requests
74
Merge Requests
74
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
ISC Open Source Projects
Kea
Commits
37cb45c2
Commit
37cb45c2
authored
Feb 03, 2015
by
Tomek Mrugalski
🛰
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[3563] Copyright years updated, minor cosmetics.
parent
900ef775
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
12 additions
and
12 deletions
+12
-12
src/bin/dhcp6/dhcp6_srv.cc
src/bin/dhcp6/dhcp6_srv.cc
+1
-1
src/lib/dhcpsrv/cfg_hosts.cc
src/lib/dhcpsrv/cfg_hosts.cc
+2
-2
src/lib/dhcpsrv/cfg_hosts.h
src/lib/dhcpsrv/cfg_hosts.h
+1
-1
src/lib/dhcpsrv/host.cc
src/lib/dhcpsrv/host.cc
+1
-1
src/lib/dhcpsrv/host.h
src/lib/dhcpsrv/host.h
+1
-1
src/lib/dhcpsrv/host_container.h
src/lib/dhcpsrv/host_container.h
+2
-2
src/lib/dhcpsrv/host_mgr.cc
src/lib/dhcpsrv/host_mgr.cc
+1
-1
src/lib/dhcpsrv/host_mgr.h
src/lib/dhcpsrv/host_mgr.h
+1
-1
src/lib/dhcpsrv/subnet.h
src/lib/dhcpsrv/subnet.h
+1
-1
src/lib/dhcpsrv/tests/cfg_hosts_unittest.cc
src/lib/dhcpsrv/tests/cfg_hosts_unittest.cc
+1
-1
No files found.
src/bin/dhcp6/dhcp6_srv.cc
View file @
37cb45c2
// Copyright (C) 2011-201
4
Internet Systems Consortium, Inc. ("ISC")
// Copyright (C) 2011-201
5
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
...
...
src/lib/dhcpsrv/cfg_hosts.cc
View file @
37cb45c2
// Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
// Copyright (C) 2014
-2015
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
...
...
@@ -120,7 +120,7 @@ CfgHosts::getAllInternal6(const IOAddress& address, Storage& storage) const {
isc_throw
(
BadHostAddress
,
"must specify an IPv6 address when searching"
" for a host, specified address was "
<<
address
);
}
// Search for the Host using the reserved IPv
4
address as a key.
// Search for the Host using the reserved IPv
6
address as a key.
const
HostContainerIndex1
&
idx
=
hosts_
.
get
<
1
>
();
HostContainerIndex1Range
r
=
idx
.
equal_range
(
address
);
// Append each Host object to the storage.
...
...
src/lib/dhcpsrv/cfg_hosts.h
View file @
37cb45c2
// Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
// Copyright (C) 2014
-2015
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
...
...
src/lib/dhcpsrv/host.cc
View file @
37cb45c2
// Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
// Copyright (C) 2014
-2015
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
...
...
src/lib/dhcpsrv/host.h
View file @
37cb45c2
// Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
// Copyright (C) 2014
-2015
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
...
...
src/lib/dhcpsrv/host_container.h
View file @
37cb45c2
// Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
// Copyright (C) 2014
-2015
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
...
...
@@ -112,7 +112,7 @@ struct HostResrv6Tuple {
/// @param resrv IPv6 address/prefix reservation
/// @param host pointer to the host object
HostResrv6Tuple
(
const
IPv6Resrv
&
resrv
,
const
HostPtr
&
host
)
:
resrv_
(
resrv
),
host_
(
host
),
subnet_id_
(
host
?
host
->
getIPv6SubnetID
()
:
0
)
{
:
resrv_
(
resrv
),
host_
(
host
),
subnet_id_
(
host
?
host
->
getIPv6SubnetID
()
:
0
)
{
}
/// @brief Address or prefix reservation.
...
...
src/lib/dhcpsrv/host_mgr.cc
View file @
37cb45c2
// Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
// Copyright (C) 2014
-2015
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
...
...
src/lib/dhcpsrv/host_mgr.h
View file @
37cb45c2
// Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
// Copyright (C) 2014
-2015
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
...
...
src/lib/dhcpsrv/subnet.h
View file @
37cb45c2
// Copyright (C) 2012-201
4
Internet Systems Consortium, Inc. ("ISC")
// Copyright (C) 2012-201
5
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
...
...
src/lib/dhcpsrv/tests/cfg_hosts_unittest.cc
View file @
37cb45c2
// Copyright (C) 2014 Internet Systems Consortium, Inc. ("ISC")
// Copyright (C) 2014
-2015
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
...
...
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