We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab7925f commit b24c588Copy full SHA for b24c588
src/unix/haiku/mod.rs
@@ -553,7 +553,6 @@ pub const IFF_LOOPBACK: ::c_int = 0x0008;
553
pub const AF_UNIX: ::c_int = 9;
554
pub const AF_INET: ::c_int = 1;
555
pub const AF_INET6: ::c_int = 6;
556
-pub const SOCK_RAW: ::c_int = 3;
557
pub const IP_MULTICAST_TTL: ::c_int = 10;
558
pub const IP_MULTICAST_LOOP: ::c_int = 11;
559
pub const IP_TTL: ::c_int = 4;
@@ -661,6 +660,8 @@ pub const RUSAGE_CHILDREN: ::c_int = -1;
661
660
662
pub const SOCK_STREAM: ::c_int = 1;
663
pub const SOCK_DGRAM: ::c_int = 2;
+pub const SOCK_RAW: ::c_int = 3;
664
+pub const SOCK_SEQPACKET: ::c_int = 5;
665
666
pub const SOL_SOCKET: ::c_int = -1;
667
pub const SO_ACCEPTCONN: ::c_int = 0x00000001;
0 commit comments