Skip to content

Commit

Permalink
Remove addressed TODOs
Browse files Browse the repository at this point in the history
  • Loading branch information
ivmarkov committed Jun 2, 2024
1 parent 0bd586d commit 93b4467
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -404,11 +404,11 @@ where
socket
.join_v4(MDNS_IPV4_BROADCAST_ADDR, _netif_conf.ipv4)
.await
.map_err(|_| ErrorCode::StdIoError)?; // TODO: netif_conf.ipv4
.map_err(|_| ErrorCode::StdIoError)?;
socket
.join_v6(MDNS_IPV6_BROADCAST_ADDR, _netif_conf.interface)
.await
.map_err(|_| ErrorCode::StdIoError)?; // TODO: netif_conf.interface
.map_err(|_| ErrorCode::StdIoError)?;

let (recv, send) = socket.split();

Expand Down

0 comments on commit 93b4467

Please sign in to comment.