-
Notifications
You must be signed in to change notification settings - Fork 54
RDKB-58910 : Move the WAN IPV6 configuration from LAN bridge #79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
8a6345d
03d4221
7c64ad1
f3dd4d8
d072a94
9b1e269
c124798
3a84b22
62c630b
b8aea40
1e13651
0e0ba2d
f0bd16d
f45f83c
dd2db9c
ff18e4b
6dd2568
7f06a7c
7828845
a176136
5c6acd8
bf284f6
2ab8724
8bb4369
f55d1b5
d312132
2645592
08d79e1
0802ac5
ab841a4
9384b5a
dcc4531
842125d
e9d4743
c7c4892
c809027
78211db
d65deed
38038da
99488a3
df36c4a
ceb1ca2
9966ecf
1f87a30
92faa23
b210936
715f5ca
0abe743
f229450
dfa93ba
ba6daf0
60d5bb3
356fa90
81e1c83
777eaa8
e009be8
c32564a
90b5283
8d90cb3
f37c08d
55f2c3f
57e6d9c
24a976c
ef40e85
d75a9a7
414fd9d
b7c30de
287e1f7
86ed474
42bf6ea
e0d8789
c1adbfb
2a5f4e8
912fc65
1b44dc1
ed6da65
c8b4a7c
e81e35e
5079060
1398ead
2754e4d
b4bc3a5
ca2eae1
516ddbf
2ad55da
d0b5898
27cab43
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -104,6 +104,17 @@ static void copyDhcpv6Data(WANMGR_IPV6_DATA* pDhcpv6Data, const DHCP_MGR_IPV6_MS | |||||||||||||||||||||
| pDhcpv6Data->prefixAssigned = leaseInfo->prefixAssigned; | ||||||||||||||||||||||
| pDhcpv6Data->domainNameAssigned = leaseInfo->domainNameAssigned; | ||||||||||||||||||||||
| pDhcpv6Data->ipv6_TimeOffset = leaseInfo->ipv6_TimeOffset; | ||||||||||||||||||||||
| if(!pDhcpv6Data->addrAssigned && pDhcpv6Data->prefixAssigned) | ||||||||||||||||||||||
| { | ||||||||||||||||||||||
| /* In an IPv6 lease, if only IAPD is received and we never received IANA, | ||||||||||||||||||||||
| * We can use the received IAPD to construct a Ipv6 /128 address which can be used for managerment and voice ... | ||||||||||||||||||||||
| * If we reach this point, only IAPD has been received. Calculate Wan Ipv6 address | ||||||||||||||||||||||
| */ | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| CcspTraceInfo(("IANA is not assigned by DHCPV6. Constructing WAN address from the IAPD for Wan Interface \n")); | ||||||||||||||||||||||
| wanmgr_construct_wan_address_from_IAPD(pDhcpv6Data); | ||||||||||||||||||||||
| } | ||||||||||||||||||||||
|
Comment on lines
104
to
+116
|
||||||||||||||||||||||
|
|
||||||||||||||||||||||
|
Comment on lines
+107
to
+117
|
||||||||||||||||||||||
| if(!pDhcpv6Data->addrAssigned && pDhcpv6Data->prefixAssigned) | |
| { | |
| /* In an IPv6 lease, if only IAPD is received and we never received IANA, | |
| * We can use the received IAPD to construct a Ipv6 /128 address which can be used for managerment and voice ... | |
| * If we reach this point, only IAPD has been received. Canculate Wan Ipv6 address | |
| */ | |
| CcspTraceInfo(("IANA is not assigned by DHCPV6. Constructing WAN address from the IAPD for Wan Interface \n")); | |
| wanmgr_construct_wan_address_from_IAPD(pDhcpv6Data); | |
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Typo in comment: “managerment” should be “management”.