summaryrefslogtreecommitdiff
path: root/src/sys/socket/mod.rs
AgeCommit message (Expand)Author
2021-04-04Use memoffset::offset_of instead of homegrown macroAlan Somers
2021-03-23Allow cmsg_space! to be used in unit testsLu, Wangshan
2021-03-21illumos and Solaris supportJason King
2021-03-05Allow sockaddr_ll size mismatchJustin Ossevoort
2021-03-04Remove accept4 on Android armAlan Somers
2021-01-04Add support for when receiving packetsJustin Ossevoort
2020-12-14Remove SockLevelAlan Somers
2020-11-27Fix recvmmsg(2) implementationToby DiPasquale
2020-11-15Suppress af_alg_iv "deprecation"Tamir Duberstein
2020-10-10Merge #1303bors[bot]
2020-10-04Support vsock on Android as well as Linux.Andrew Walbran
2020-10-03Renable the ScmTimestamp test on FreeBSD i386Alan Somers
2020-08-18Add Netlink Protocol Families to SockProtocol enumsinkingpoint
2020-07-04Expose IP_PKTINFO Control Message on AndroidBruno Tavares
2020-06-27Make SockAddr::as_ffi_pair safeAlan Somers
2020-06-27implement Default for UnixCredentials on LinuxAlan Somers
2020-06-27Make sys::socket::sockaddr_storage a safe functionAlan Somers
2020-06-26Add Ipv{4,6}PacketInfo support to ControlMessage for send{m,}msgPerry Lorier
2020-05-31Convert the crate to edition 2018Alan Somers
2020-05-26Fix build on OpenBSD caused by erroneous inclusion in allowed OS list for sen...Nick Pelone
2020-05-16Apply `repr(transparent)` to several FFI typesAlan Somers
2020-05-02Add UnixCredentials support on FreeBSD/DragonFly (cmsgcred/SCM_CREDS)Greg V
2020-04-26Eliminate a mem::zeroed() in recvmmsgAlan Somers
2020-04-26Support sendmmsg/recvmmsgGleb Pomykalov
2020-04-25Support UDP GSO and GRO on linuxGleb Pomykalov
2020-04-08Fix unaligned castting of cmsg data to af_alg_ivGleb Pomykalov
2019-12-01ScmCredentials now wraps UnixCredentials instead of libc::ucredAlan Somers
2019-11-30Remove the deprecated CmsgSpaceAlan Somers
2019-10-28Fix sys::socket::recvfrom for TCP socketsAlan Somers
2019-10-15Properly initialize msghdr when using muslYuxuan Shui
2019-09-19Where relevant, replace equality checks in assert! with assert_eq!Xavier L'Heureux
2019-09-03Replace most instances of mem::uninitialized with mem::MaybeUninitAlan Somers
2019-08-29Implement Default for FdSetAlan Somers
2019-08-29Remove an obsolete commentAlan Somers
2019-08-29Clippy: silence a false-positive cast alignment warningAlan Somers
2019-08-29Clippy: remove unnecessary mem::transmuteAlan Somers
2019-08-29Clippy cleanupAlan Somers
2019-07-13Merge #1095bors[bot]
2019-07-13Fix warnings on Rust 1.37.0Alan Somers
2019-07-12socket: add support for AF_VSOCKStefano Garzarella
2019-06-09Add extra traits for all typesBryant Mairs
2019-06-07socket: expose MSG_WAITALL in MsgFlagsStefano Garzarella
2019-04-29Restored the bytes field on RecvMsg in order to know the amount of bytes rece...Vincent Dagonneau
2019-03-12Support AF_ALGGleb Pomykalov
2019-02-14Enable IPv4PacketInfo and Ipv6PacketInfo on more OSes.Alan Somers
2019-02-14Fix misaligned references when using recvmsg with control messagesAlan Somers
2019-02-14Replace CmsgSpace with a macroAlan Somers
2019-02-14Fix error handling of RecvMsgAlan Somers
2019-02-14Replace hand-rolled cmsg logic with libc's cmsg(3) functions.Alan Somers
2019-01-23Add IP_RECVIF & IP_RECVDSTADDR.Tom Pusateri