summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlan Somers <asomers@gmail.com>2020-12-14 19:59:59 -0700
committerAlan Somers <asomers@gmail.com>2020-12-14 20:00:56 -0700
commitd3378a6d1ab50447191cc757c1f5b42f3f723a1c (patch)
tree49fec02059acdf43b9ac663ada2795ab8e1fbe9b /src
parentb1b162fe1831c58243487351d933e5407b821fe7 (diff)
downloadnix-d3378a6d1ab50447191cc757c1f5b42f3f723a1c.zip
Remove SockLevel
It's been unused since PR #133
Diffstat (limited to 'src')
-rw-r--r--src/sys/socket/mod.rs18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/sys/socket/mod.rs b/src/sys/socket/mod.rs
index a4f599c1..38b910f1 100644
--- a/src/sys/socket/mod.rs
+++ b/src/sys/socket/mod.rs
@@ -1576,24 +1576,6 @@ pub fn send(fd: RawFd, buf: &[u8], flags: MsgFlags) -> Result<usize> {
*
*/
-/// The protocol level at which to get / set socket options. Used as an
-/// argument to `getsockopt` and `setsockopt`.
-///
-/// [Further reading](http://pubs.opengroup.org/onlinepubs/9699919799/functions/setsockopt.html)
-#[repr(i32)]
-#[derive(Clone, Copy, Debug, Eq, Hash, PartialEq)]
-pub enum SockLevel {
- Socket = libc::SOL_SOCKET,
- Tcp = libc::IPPROTO_TCP,
- Ip = libc::IPPROTO_IP,
- Ipv6 = libc::IPPROTO_IPV6,
- Udp = libc::IPPROTO_UDP,
- #[cfg(any(target_os = "android", target_os = "linux"))]
- Netlink = libc::SOL_NETLINK,
- #[cfg(any(target_os = "android", target_os = "linux"))]
- Alg = libc::SOL_ALG,
-}
-
/// Represents a socket option that can be accessed or set. Used as an argument
/// to `getsockopt`
pub trait GetSockOpt : Copy {