Skip to content

Commit 72aa012

Browse files
committed
wire: use core::net::Ipv4Addr as the ipv4 address type.
1 parent 0341cc9 commit 72aa012

25 files changed

+344
-444
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ byteorder = { version = "1.0", default-features = false }
2525
log = { version = "0.4.4", default-features = false, optional = true }
2626
libc = { version = "0.2.18", optional = true }
2727
bitflags = { version = "1.0", default-features = false }
28-
defmt = { version = "0.3", optional = true }
28+
defmt = { version = "0.3.8", optional = true, features = ["ip_in_core"] }
2929
cfg-if = "1.0.0"
3030
heapless = "0.8"
3131

benches/bench.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ mod wire {
2222
]));
2323

2424
#[cfg(all(not(feature = "proto-ipv6"), feature = "proto-ipv4"))]
25-
const SRC_ADDR: IpAddress = IpAddress::Ipv4(Ipv4Address([192, 168, 1, 1]));
25+
const SRC_ADDR: IpAddress = IpAddress::Ipv4(Ipv4Address::new(192, 168, 1, 1));
2626
#[cfg(all(not(feature = "proto-ipv6"), feature = "proto-ipv4"))]
27-
const DST_ADDR: IpAddress = IpAddress::Ipv4(Ipv4Address([192, 168, 1, 2]));
27+
const DST_ADDR: IpAddress = IpAddress::Ipv4(Ipv4Address::new(192, 168, 1, 2));
2828

2929
#[bench]
3030
#[cfg(any(feature = "proto-ipv6", feature = "proto-ipv4"))]
@@ -84,8 +84,8 @@ mod wire {
8484
#[cfg(feature = "proto-ipv4")]
8585
fn bench_emit_ipv4(b: &mut test::Bencher) {
8686
let repr = Ipv4Repr {
87-
src_addr: Ipv4Address([192, 168, 1, 1]),
88-
dst_addr: Ipv4Address([192, 168, 1, 2]),
87+
src_addr: Ipv4Address::new(192, 168, 1, 1),
88+
dst_addr: Ipv4Address::new(192, 168, 1, 2),
8989
next_header: IpProtocol::Tcp,
9090
payload_len: 100,
9191
hop_limit: 64,

examples/multicast.rs

+2-4
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ use smoltcp::wire::{
1212
};
1313

1414
const MDNS_PORT: u16 = 5353;
15-
const MDNS_GROUP: [u8; 4] = [224, 0, 0, 251];
15+
const MDNS_GROUP: Ipv4Address = Ipv4Address::new(224, 0, 0, 251);
1616

1717
fn main() {
1818
utils::setup_logging("warn");
@@ -81,9 +81,7 @@ fn main() {
8181
let udp_handle = sockets.add(udp_socket);
8282

8383
// Join a multicast group to receive mDNS traffic
84-
iface
85-
.join_multicast_group(Ipv4Address::from_bytes(&MDNS_GROUP))
86-
.unwrap();
84+
iface.join_multicast_group(MDNS_GROUP).unwrap();
8785

8886
loop {
8987
let timestamp = Instant::now();

src/iface/fragmentation.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -329,8 +329,8 @@ impl Fragmenter {
329329
#[cfg(feature = "proto-ipv4-fragmentation")]
330330
ipv4: Ipv4Fragmenter {
331331
repr: Ipv4Repr {
332-
src_addr: Ipv4Address::default(),
333-
dst_addr: Ipv4Address::default(),
332+
src_addr: Ipv4Address::new(0, 0, 0, 0),
333+
dst_addr: Ipv4Address::new(0, 0, 0, 0),
334334
next_header: IpProtocol::Unknown(0),
335335
payload_len: 0,
336336
hop_limit: 0,
@@ -373,8 +373,8 @@ impl Fragmenter {
373373
#[cfg(feature = "proto-ipv4-fragmentation")]
374374
{
375375
self.ipv4.repr = Ipv4Repr {
376-
src_addr: Ipv4Address::default(),
377-
dst_addr: Ipv4Address::default(),
376+
src_addr: Ipv4Address::new(0, 0, 0, 0),
377+
dst_addr: Ipv4Address::new(0, 0, 0, 0),
378378
next_header: IpProtocol::Unknown(0),
379379
payload_len: 0,
380380
hop_limit: 0,

src/iface/interface/mod.rs

+20-15
Original file line numberDiff line numberDiff line change
@@ -830,7 +830,7 @@ impl InterfaceInner {
830830

831831
match addr {
832832
#[cfg(feature = "proto-ipv4")]
833-
IpAddress::Ipv4(key) => key == Ipv4Address::MULTICAST_ALL_SYSTEMS,
833+
IpAddress::Ipv4(key) => key == IPV4_MULTICAST_ALL_SYSTEMS,
834834
#[cfg(feature = "proto-rpl")]
835835
IpAddress::Ipv6(Ipv6Address::LINK_LOCAL_ALL_RPL_NODES) => true,
836836
#[cfg(feature = "proto-ipv6")]
@@ -987,30 +987,35 @@ impl InterfaceInner {
987987
}
988988

989989
if dst_addr.is_multicast() {
990-
let b = dst_addr.as_bytes();
991990
let hardware_addr = match *dst_addr {
992991
#[cfg(feature = "proto-ipv4")]
993-
IpAddress::Ipv4(_addr) => match self.caps.medium {
992+
IpAddress::Ipv4(addr) => match self.caps.medium {
994993
#[cfg(feature = "medium-ethernet")]
995-
Medium::Ethernet => HardwareAddress::Ethernet(EthernetAddress::from_bytes(&[
996-
0x01,
997-
0x00,
998-
0x5e,
999-
b[1] & 0x7F,
1000-
b[2],
1001-
b[3],
1002-
])),
994+
Medium::Ethernet => {
995+
let b = addr.octets();
996+
HardwareAddress::Ethernet(EthernetAddress::from_bytes(&[
997+
0x01,
998+
0x00,
999+
0x5e,
1000+
b[1] & 0x7F,
1001+
b[2],
1002+
b[3],
1003+
]))
1004+
}
10031005
#[cfg(feature = "medium-ieee802154")]
10041006
Medium::Ieee802154 => unreachable!(),
10051007
#[cfg(feature = "medium-ip")]
10061008
Medium::Ip => unreachable!(),
10071009
},
10081010
#[cfg(feature = "proto-ipv6")]
1009-
IpAddress::Ipv6(_addr) => match self.caps.medium {
1011+
IpAddress::Ipv6(addr) => match self.caps.medium {
10101012
#[cfg(feature = "medium-ethernet")]
1011-
Medium::Ethernet => HardwareAddress::Ethernet(EthernetAddress::from_bytes(&[
1012-
0x33, 0x33, b[12], b[13], b[14], b[15],
1013-
])),
1013+
Medium::Ethernet => {
1014+
let b = addr.as_bytes();
1015+
HardwareAddress::Ethernet(EthernetAddress::from_bytes(&[
1016+
0x33, 0x33, b[12], b[13], b[14], b[15],
1017+
]))
1018+
}
10141019
#[cfg(feature = "medium-ieee802154")]
10151020
Medium::Ieee802154 => {
10161021
// Not sure if this is correct

src/iface/interface/multicast.rs

+2-4
Original file line numberDiff line numberDiff line change
@@ -334,9 +334,7 @@ impl InterfaceInner {
334334
max_resp_time,
335335
} => {
336336
// General query
337-
if group_addr.is_unspecified()
338-
&& ipv4_repr.dst_addr == Ipv4Address::MULTICAST_ALL_SYSTEMS
339-
{
337+
if group_addr.is_unspecified() && ipv4_repr.dst_addr == IPV4_MULTICAST_ALL_SYSTEMS {
340338
let ipv4_multicast_group_count = self
341339
.multicast
342340
.groups
@@ -418,7 +416,7 @@ impl InterfaceInner {
418416
Packet::new_ipv4(
419417
Ipv4Repr {
420418
src_addr: iface_addr,
421-
dst_addr: Ipv4Address::MULTICAST_ALL_ROUTERS,
419+
dst_addr: IPV4_MULTICAST_ALL_ROUTERS,
422420
next_header: IpProtocol::Igmp,
423421
payload_len: igmp_repr.buffer_len(),
424422
hop_limit: 1,

0 commit comments

Comments
 (0)