File tree Expand file tree Collapse file tree 2 files changed +18
-2
lines changed
src/unix/bsd/freebsdlike/freebsd Expand file tree Collapse file tree 2 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 29
29
task :
30
30
name : nightly x86_64-unknown-freebsd-14
31
31
freebsd_instance :
32
- image : freebsd-14-0-beta2 -amd64
32
+ image : freebsd-14-0-rc1 -amd64
33
33
setup_script :
34
34
- pkg install -y libnghttp2 curl
35
35
- curl https://sh.rustup.rs -sSf --output rustup.sh
Original file line number Diff line number Diff line change 998
998
pub pcbcnt: u32 ,
999
999
}
1000
1000
1001
+ // Note: this structure will change in a backwards-incompatible way in
1002
+ // FreeBSD 15.
1001
1003
pub struct tcp_info {
1002
1004
pub tcpi_state: u8 ,
1003
1005
pub __tcpi_ca_state: u8 ,
@@ -1055,7 +1057,21 @@ s! {
1055
1057
#[ cfg( freebsd14) ]
1056
1058
pub __tcpi_received_ce_bytes: u32 ,
1057
1059
#[ cfg( freebsd14) ]
1058
- pub __tcpi_pad: [ u32 ; 19 ] ,
1060
+ pub tcpi_total_tlp: u32 ,
1061
+ #[ cfg( freebsd14) ]
1062
+ pub tcpi_total_tlp_bytes: u64 ,
1063
+ #[ cfg( freebsd14) ]
1064
+ pub tcpi_snd_una: u32 ,
1065
+ #[ cfg( freebsd14) ]
1066
+ pub tcpi_snd_max: u32 ,
1067
+ #[ cfg( freebsd14) ]
1068
+ pub tcpi_rcv_numsacks: u32 ,
1069
+ #[ cfg( freebsd14) ]
1070
+ pub tcpi_rcv_adv: u32 ,
1071
+ #[ cfg( freebsd14) ]
1072
+ pub tcpi_dupacks: u32 ,
1073
+ #[ cfg( freebsd14) ]
1074
+ pub __tcpi_pad: [ u32 ; 10 ] ,
1059
1075
#[ cfg( not( freebsd14) ) ]
1060
1076
pub __tcpi_pad: [ u32 ; 26 ] ,
1061
1077
}
You can’t perform that action at this time.
0 commit comments