File tree 2 files changed +33
-3
lines changed
2 files changed +33
-3
lines changed Original file line number Diff line number Diff line change @@ -1682,7 +1682,17 @@ impl Socket {
1682
1682
/// For more information about this option, see [`set_header_included`].
1683
1683
///
1684
1684
/// [`set_header_included`]: Socket::set_header_included
1685
- #[ cfg( all( feature = "all" , not( any( target_os = "redox" , target_os = "espidf" ) ) ) ) ]
1685
+ #[ cfg( all(
1686
+ feature = "all" ,
1687
+ not( any(
1688
+ target_os = "redox" ,
1689
+ target_os = "espidf" ,
1690
+ target_os = "openbsd" ,
1691
+ target_os = "freebsd" ,
1692
+ target_os = "dragonfly" ,
1693
+ target_os = "netbsd"
1694
+ ) )
1695
+ ) ) ]
1686
1696
#[ cfg_attr(
1687
1697
docsrs,
1688
1698
doc( cfg( all( feature = "all" , not( any( target_os = "redox" , target_os = "espidf" ) ) ) ) )
@@ -1706,7 +1716,17 @@ impl Socket {
1706
1716
any( target_os = "fuchsia" , target_os = "illumos" , target_os = "solaris" ) ,
1707
1717
allow( rustdoc:: broken_intra_doc_links)
1708
1718
) ]
1709
- #[ cfg( all( feature = "all" , not( any( target_os = "redox" , target_os = "espidf" ) ) ) ) ]
1719
+ #[ cfg( all(
1720
+ feature = "all" ,
1721
+ not( any(
1722
+ target_os = "redox" ,
1723
+ target_os = "espidf" ,
1724
+ target_os = "openbsd" ,
1725
+ target_os = "freebsd" ,
1726
+ target_os = "dragonfly" ,
1727
+ target_os = "netbsd"
1728
+ ) )
1729
+ ) ) ]
1710
1730
#[ cfg_attr(
1711
1731
docsrs,
1712
1732
doc( cfg( all( feature = "all" , not( any( target_os = "redox" , target_os = "espidf" ) ) ) ) )
Original file line number Diff line number Diff line change @@ -1564,7 +1564,17 @@ fn header_included() {
1564
1564
}
1565
1565
1566
1566
#[ test]
1567
- #[ cfg( all( feature = "all" , not( target_os = "redox" ) ) ) ]
1567
+ #[ cfg( all(
1568
+ feature = "all" ,
1569
+ not( any(
1570
+ target_os = "redox" ,
1571
+ target_os = "espidf" ,
1572
+ target_os = "openbsd" ,
1573
+ target_os = "freebsd" ,
1574
+ target_os = "dragonfly" ,
1575
+ target_os = "netbsd"
1576
+ ) )
1577
+ ) ) ]
1568
1578
fn header_included_ipv6 ( ) {
1569
1579
let socket = match Socket :: new ( Domain :: IPV6 , Type :: RAW , None ) {
1570
1580
Ok ( socket) => socket,
You can’t perform that action at this time.
0 commit comments