@@ -37,9 +37,9 @@ impl InterfaceInner {
37
37
}
38
38
39
39
if dst_addr. is_multicast ( )
40
- && matches ! ( dst_addr. multicast_scope ( ) , Ipv6MulticastScope :: LinkLocal )
40
+ && matches ! ( dst_addr. x_multicast_scope ( ) , Ipv6MulticastScope :: LinkLocal )
41
41
&& src_addr. is_multicast ( )
42
- && !matches ! ( src_addr. multicast_scope ( ) , Ipv6MulticastScope :: LinkLocal )
42
+ && !matches ! ( src_addr. x_multicast_scope ( ) , Ipv6MulticastScope :: LinkLocal )
43
43
{
44
44
return false ;
45
45
}
@@ -58,7 +58,7 @@ impl InterfaceInner {
58
58
fn common_prefix_length ( dst_addr : & Ipv6Cidr , src_addr : & Ipv6Address ) -> usize {
59
59
let addr = dst_addr. address ( ) ;
60
60
let mut bits = 0 ;
61
- for ( l, r) in addr. as_bytes ( ) . iter ( ) . zip ( src_addr. as_bytes ( ) . iter ( ) ) {
61
+ for ( l, r) in addr. octets ( ) . iter ( ) . zip ( src_addr. octets ( ) . iter ( ) ) {
62
62
if l == r {
63
63
bits += 8 ;
64
64
} else {
@@ -82,7 +82,7 @@ impl InterfaceInner {
82
82
. count ( )
83
83
== 0
84
84
{
85
- return Ipv6Address :: LOOPBACK ;
85
+ return Ipv6Address :: LOCALHOST ;
86
86
}
87
87
88
88
let mut candidate = self
@@ -111,15 +111,16 @@ impl InterfaceInner {
111
111
}
112
112
113
113
// Rule 2: prefer appropriate scope.
114
- if ( candidate. address ( ) . multicast_scope ( ) as u8 )
115
- < ( addr. address ( ) . multicast_scope ( ) as u8 )
114
+ if ( candidate. address ( ) . x_multicast_scope ( ) as u8 )
115
+ < ( addr. address ( ) . x_multicast_scope ( ) as u8 )
116
116
{
117
- if ( candidate. address ( ) . multicast_scope ( ) as u8 )
118
- < ( dst_addr. multicast_scope ( ) as u8 )
117
+ if ( candidate. address ( ) . x_multicast_scope ( ) as u8 )
118
+ < ( dst_addr. x_multicast_scope ( ) as u8 )
119
119
{
120
120
candidate = addr;
121
121
}
122
- } else if ( addr. address ( ) . multicast_scope ( ) as u8 ) > ( dst_addr. multicast_scope ( ) as u8 )
122
+ } else if ( addr. address ( ) . x_multicast_scope ( ) as u8 )
123
+ > ( dst_addr. x_multicast_scope ( ) as u8 )
123
124
{
124
125
candidate = addr;
125
126
}
@@ -147,10 +148,10 @@ impl InterfaceInner {
147
148
pub fn has_solicited_node ( & self , addr : Ipv6Address ) -> bool {
148
149
self . ip_addrs . iter ( ) . any ( |cidr| {
149
150
match * cidr {
150
- IpCidr :: Ipv6 ( cidr) if cidr. address ( ) != Ipv6Address :: LOOPBACK => {
151
+ IpCidr :: Ipv6 ( cidr) if cidr. address ( ) != Ipv6Address :: LOCALHOST => {
151
152
// Take the lower order 24 bits of the IPv6 address and
152
153
// append those bits to FF02:0:0:0:0:1:FF00::/104.
153
- addr. as_bytes ( ) [ 14 ..] == cidr. address ( ) . as_bytes ( ) [ 14 ..]
154
+ addr. octets ( ) [ 14 ..] == cidr. address ( ) . octets ( ) [ 14 ..]
154
155
}
155
156
_ => false ,
156
157
}
@@ -192,7 +193,7 @@ impl InterfaceInner {
192
193
) -> Option < Packet < ' frame > > {
193
194
let ipv6_repr = check ! ( Ipv6Repr :: parse( ipv6_packet) ) ;
194
195
195
- if !ipv6_repr. src_addr . is_unicast ( ) {
196
+ if !ipv6_repr. src_addr . x_is_unicast ( ) {
196
197
// Discard packets with non-unicast source addresses.
197
198
net_debug ! ( "non-unicast source address" ) ;
198
199
return None ;
@@ -213,7 +214,7 @@ impl InterfaceInner {
213
214
{
214
215
// If AnyIP is enabled, also check if the packet is routed locally.
215
216
if !self . any_ip
216
- || !ipv6_repr. dst_addr . is_unicast ( )
217
+ || !ipv6_repr. dst_addr . x_is_unicast ( )
217
218
|| self
218
219
. routes
219
220
. lookup ( & IpAddress :: Ipv6 ( ipv6_repr. dst_addr ) , self . now )
@@ -230,7 +231,7 @@ impl InterfaceInner {
230
231
let handled_by_raw_socket = false ;
231
232
232
233
#[ cfg( any( feature = "medium-ethernet" , feature = "medium-ieee802154" ) ) ]
233
- if ipv6_repr. dst_addr . is_unicast ( ) {
234
+ if ipv6_repr. dst_addr . x_is_unicast ( ) {
234
235
self . neighbor_cache . reset_expiry_if_existing (
235
236
IpAddress :: Ipv6 ( ipv6_repr. src_addr ) ,
236
237
source_hardware_addr,
@@ -436,7 +437,7 @@ impl InterfaceInner {
436
437
let ip_addr = ip_repr. src_addr . into ( ) ;
437
438
if let Some ( lladdr) = lladdr {
438
439
let lladdr = check ! ( lladdr. parse( self . caps. medium) ) ;
439
- if !lladdr. is_unicast ( ) || !target_addr. is_unicast ( ) {
440
+ if !lladdr. is_unicast ( ) || !target_addr. x_is_unicast ( ) {
440
441
return None ;
441
442
}
442
443
if flags. contains ( NdiscNeighborFlags :: OVERRIDE )
@@ -454,7 +455,7 @@ impl InterfaceInner {
454
455
} => {
455
456
if let Some ( lladdr) = lladdr {
456
457
let lladdr = check ! ( lladdr. parse( self . caps. medium) ) ;
457
- if !lladdr. is_unicast ( ) || !target_addr. is_unicast ( ) {
458
+ if !lladdr. is_unicast ( ) || !target_addr. x_is_unicast ( ) {
458
459
return None ;
459
460
}
460
461
self . neighbor_cache
@@ -492,7 +493,7 @@ impl InterfaceInner {
492
493
let src_addr = ipv6_repr. dst_addr ;
493
494
let dst_addr = ipv6_repr. src_addr ;
494
495
495
- let src_addr = if src_addr. is_unicast ( ) {
496
+ let src_addr = if src_addr. x_is_unicast ( ) {
496
497
src_addr
497
498
} else {
498
499
self . get_source_address_ipv6 ( & dst_addr)
@@ -524,7 +525,7 @@ impl InterfaceInner {
524
525
525
526
// Per [RFC 3810 § 5.2.14], all MLDv2 reports are sent to ff02::16.
526
527
// [RFC 3810 § 5.2.14]: https://tools.ietf.org/html/rfc3810#section-5.2.14
527
- let dst_addr = Ipv6Address :: LINK_LOCAL_ALL_MLDV2_ROUTERS ;
528
+ let dst_addr = IPV6_LINK_LOCAL_ALL_MLDV2_ROUTERS ;
528
529
529
530
// Create a dummy IPv6 extension header so we can calculate the total length of the packet.
530
531
// The actual extension header will be created later by Packet::emit_payload().
0 commit comments