Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
Kea
Commits
1cefa54c
Commit
1cefa54c
authored
Jun 30, 2016
by
Francis Dupont
Browse files
[4500] Addressed comments
parent
927c2354
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/bin/dhcp6/dhcp6_hooks.dox
View file @
1cefa54c
...
...
@@ -191,7 +191,7 @@ packet processing. Hook points that are not specific to packet processing
If a client sends more than one IA_NA option, callouts will be called
separately for each IA_NA instance. The callout will be called only
when the update is valid, i.e. conditions such as an invalid addresses
or invalid iaid rebind
al
attempts will not trigger this hook point.
or invalid iaid rebind
ing
attempts will not trigger this hook point.
- <b>Next step status</b>: If any callout installed on "lease6_rebind"
sets the status to SKIP, the server will not rebind the lease. Under these
...
...
src/bin/dhcp6/tests/hooks_unittest.cc
View file @
1cefa54c
...
...
@@ -411,6 +411,7 @@ public:
callout_handle
.
getArgument
(
"ia_na"
,
callback_ia_na_
);
// Let's override some values in the lease
ASSERT_TRUE
(
callback_lease6_
);
callback_lease6_
->
iaid_
=
override_iaid_
;
callback_lease6_
->
t1_
=
override_t1_
;
callback_lease6_
->
t2_
=
override_t2_
;
...
...
@@ -418,6 +419,7 @@ public:
callback_lease6_
->
valid_lft_
=
override_valid_
;
// Override the values to be sent to the client as well
ASSERT_TRUE
(
callback_ia_na_
);
callback_ia_na_
->
setIAID
(
override_iaid_
);
callback_ia_na_
->
setT1
(
override_t1_
);
callback_ia_na_
->
setT2
(
override_t2_
);
...
...
@@ -466,6 +468,7 @@ public:
callout_handle
.
getArgument
(
"ia_na"
,
callback_ia_na_
);
// Let's override some values in the lease
ASSERT_TRUE
(
callback_lease6_
);
callback_lease6_
->
iaid_
=
override_iaid_
;
callback_lease6_
->
t1_
=
override_t1_
;
callback_lease6_
->
t2_
=
override_t2_
;
...
...
@@ -473,6 +476,7 @@ public:
callback_lease6_
->
valid_lft_
=
override_valid_
;
// Override the values to be sent to the client as well
ASSERT_TRUE
(
callback_ia_na_
);
callback_ia_na_
->
setIAID
(
override_iaid_
);
callback_ia_na_
->
setT1
(
override_t1_
);
callback_ia_na_
->
setT2
(
override_t2_
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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