ETKNeil
ETKNeil
(Please complete the following information, and then delete this line) **Affects versions :** - OS: Fedora 36 - (Linux only) Desktop environment: X11 - Which version of libgtk do you...
If you look closely when you read both the right and credentials here https://github.com/kotauskas/interprocess/blob/master/src/os/unix/udsocket/ancillary.rs#L348 and here https://github.com/kotauskas/interprocess/blob/master/src/os/unix/udsocket/ancillary.rs#L359-L364 you are only reading by using the element_offset, however that offset is always...
When encoding the credentials the wrong type is used in the structure https://github.com/kotauskas/interprocess/blob/master/src/os/unix/udsocket/ancillary.rs#L116 ```rust #[cfg(uds_ucred)] AncillaryData::Credentials { pid, uid, gid } => { cmsg_type_bytes = SCM_RIGHTS.to_ne_bytes(); cmsg_len += size_of::(); ```...
If you look at your encoding you will see that you encode the length of the payload as header + data length https://github.com/kotauskas/interprocess/blob/master/src/os/unix/udsocket/ancillary.rs#L94 ```rust let mut cmsg_len = size_of::(); //...
This PR focus on adding ipv6 multicast hops support: See: https://man7.org/linux/man-pages/man7/ipv6.7.html See: https://learn.microsoft.com/en-us/windows/win32/winsock/ipproto-ipv6-socket-options This is the same as multicast_ttl but for ipv6, it's also missing in Rust std
### Problem Currently when using a private registry, it will pull down the assets via http(s) from a public facing registry, however in the context of a company we don't...