Skip to content
Snippets Groups Projects
Commit 2bc667f7 authored by Tiago's avatar Tiago Committed by Tiago Lam
Browse files

header/sys_un: Set sockaddr_un members to public.

Future commits will make use of this, in order to support AF_UNIX
sockets.
parent 662051a9
No related branches found
No related tags found
1 merge request!255Support AF_UNIX sockets
......@@ -2,6 +2,6 @@ use crate::{header::sys_socket::sa_family_t, platform::types::*};
#[repr(C)]
pub struct sockaddr_un {
sun_family: sa_family_t,
sun_path: [c_char; 108],
pub sun_family: sa_family_t,
pub sun_path: [c_char; 108],
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment