Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
D
Dnsmasq
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
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
nanahira
Dnsmasq
Commits
89130d91
Commit
89130d91
authored
Jun 03, 2015
by
Simon Kelley
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DHCPv6: DHCPCONFIRM should be OK for any address on link, not just dynamic addresses.
parent
d644b2a1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
CHANGELOG
CHANGELOG
+5
-0
src/rfc3315.c
src/rfc3315.c
+1
-1
No files found.
CHANGELOG
View file @
89130d91
...
@@ -121,6 +121,11 @@ version 2.73
...
@@ -121,6 +121,11 @@ version 2.73
Allow DHCPv4 options T1 and T2 to be set using --dhcp-option.
Allow DHCPv4 options T1 and T2 to be set using --dhcp-option.
Thanks to Kevin Benton for patches and work on this.
Thanks to Kevin Benton for patches and work on this.
Fix code for DHCPCONFIRM DHCPv6 messages to confirm addresses
in the correct subnet, even of not in dynamic address
allocation range. Thanks to Steve Hirsch for spotting
the problem.
version 2.72
version 2.72
Add ra-advrouter mode, for RFC-3775 mobile IPv6 support.
Add ra-advrouter mode, for RFC-3775 mobile IPv6 support.
...
...
src/rfc3315.c
View file @
89130d91
...
@@ -1089,7 +1089,7 @@ static int dhcp6_no_relay(struct state *state, int msg_type, void *inbuff, size_
...
@@ -1089,7 +1089,7 @@ static int dhcp6_no_relay(struct state *state, int msg_type, void *inbuff, size_
{
{
struct
in6_addr
*
req_addr
=
opt6_ptr
(
ia_option
,
0
);
struct
in6_addr
*
req_addr
=
opt6_ptr
(
ia_option
,
0
);
if
(
!
address6_
available
(
state
->
context
,
req_addr
,
tagif
,
1
))
if
(
!
address6_
valid
(
state
->
context
,
req_addr
,
tagif
,
1
))
{
{
o1
=
new_opt6
(
OPTION6_STATUS_CODE
);
o1
=
new_opt6
(
OPTION6_STATUS_CODE
);
put_opt6_short
(
DHCP6NOTONLINK
);
put_opt6_short
(
DHCP6NOTONLINK
);
...
...
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