Skip to content

Commit f4bd085

Browse files
committed
Auto merge of #1970 - KentaTada:add-sockoptions-consts-aarch64, r=JohnTitor
Add constants of socket options on aarch64 Signed-off-by: Kenta Tada <Kenta.Tada@sony.com>
2 parents 69a14f7 + 4ecb610 commit f4bd085

File tree

1 file changed

+19
-0
lines changed
  • src/unix/linux_like/linux/gnu/b64/aarch64

1 file changed

+19
-0
lines changed

src/unix/linux_like/linux/gnu/b64/aarch64/mod.rs

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -381,6 +381,25 @@ pub const SO_BPF_EXTENSIONS: ::c_int = 48;
381381
pub const SO_INCOMING_CPU: ::c_int = 49;
382382
pub const SO_ATTACH_BPF: ::c_int = 50;
383383
pub const SO_DETACH_BPF: ::c_int = SO_DETACH_FILTER;
384+
pub const SO_ATTACH_REUSEPORT_CBPF: ::c_int = 51;
385+
pub const SO_ATTACH_REUSEPORT_EBPF: ::c_int = 52;
386+
pub const SO_CNX_ADVICE: ::c_int = 53;
387+
pub const SCM_TIMESTAMPING_OPT_STATS: ::c_int = 54;
388+
pub const SO_MEMINFO: ::c_int = 55;
389+
pub const SO_INCOMING_NAPI_ID: ::c_int = 56;
390+
pub const SO_COOKIE: ::c_int = 57;
391+
pub const SCM_TIMESTAMPING_PKTINFO: ::c_int = 58;
392+
pub const SO_PEERGROUPS: ::c_int = 59;
393+
pub const SO_ZEROCOPY: ::c_int = 60;
394+
pub const SO_TXTIME: ::c_int = 61;
395+
pub const SCM_TXTIME: ::c_int = SO_TXTIME;
396+
pub const SO_BINDTOIFINDEX: ::c_int = 62;
397+
pub const SO_TIMESTAMP_NEW: ::c_int = 63;
398+
pub const SO_TIMESTAMPNS_NEW: ::c_int = 64;
399+
pub const SO_TIMESTAMPING_NEW: ::c_int = 65;
400+
pub const SO_RCVTIMEO_NEW: ::c_int = 66;
401+
pub const SO_SNDTIMEO_NEW: ::c_int = 67;
402+
pub const SO_DETACH_REUSEPORT_BPF: ::c_int = 68;
384403

385404
pub const SOCK_STREAM: ::c_int = 1;
386405
pub const SOCK_DGRAM: ::c_int = 2;

0 commit comments

Comments
 (0)