Skip to content

Commit c3955e4

Browse files
committed
net: fix dead code warning
Signed-off-by: Sean Cross <[email protected]>
1 parent 3919c4f commit c3955e4

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

std/src/sys/pal/xous/net/dns.rs

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ use crate::os::xous::ffi::lend_mut;
66
use crate::os::xous::services::{DnsLendMut, dns_server};
77

88
pub struct DnsError {
9+
#[allow(dead_code)]
910
pub code: u8,
1011
}
1112

std/src/sys/pal/xous/net/mod.rs

+2
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ pub mod netc {
6060

6161
#[derive(Copy, Clone)]
6262
pub struct sockaddr_in {
63+
#[allow(dead_code)]
6364
pub sin_family: sa_family_t,
6465
pub sin_port: u16,
6566
pub sin_addr: in_addr,
@@ -72,6 +73,7 @@ pub mod netc {
7273

7374
#[derive(Copy, Clone)]
7475
pub struct sockaddr_in6 {
76+
#[allow(dead_code)]
7577
pub sin6_family: sa_family_t,
7678
pub sin6_port: u16,
7779
pub sin6_addr: in6_addr,

0 commit comments

Comments
 (0)