Skip to content

Commit 532cd85

Browse files
committed
Add sun_path to the fake doc sockaddr_un
1 parent 3d03634 commit 532cd85

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

std/src/os/unix/net/addr.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ mod libc {
1515
pub type socklen_t = u32;
1616
pub struct sockaddr;
1717
#[derive(Clone)]
18-
pub struct sockaddr_un;
18+
pub struct sockaddr_un {
19+
pub sun_path: [u8; 1],
20+
}
1921
}
2022

2123
const SUN_PATH_OFFSET: usize = mem::offset_of!(libc::sockaddr_un, sun_path);

0 commit comments

Comments
 (0)