Skip to content

Commit 2446f48

Browse files
committed
Make CcidEndpoints public
1 parent 023089c commit 2446f48

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,8 @@ pub use sockaddr::{sa_family_t, socklen_t, SockAddr, SockAddrStorage};
196196
pub use socket::InterfaceIndexOrAddress;
197197
pub use socket::Socket;
198198
pub use sockref::SockRef;
199+
#[cfg(all(feature = "all", target_os = "linux"))]
200+
pub use sys::CcidEndpoints;
199201
#[cfg(all(feature = "all", any(target_os = "linux", target_os = "android")))]
200202
pub use sys::SockFilter;
201203

src/sys/unix.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2844,6 +2844,8 @@ impl std::fmt::Debug for SockFilter {
28442844
}
28452845

28462846
/// See [`Socket::dccp_available_ccids`].
2847+
///
2848+
/// [`Socket::dccp_available_ccids`]: crate::Socket::dccp_available_ccids
28472849
#[cfg(all(feature = "all", target_os = "linux"))]
28482850
#[derive(Debug)]
28492851
pub struct CcidEndpoints<const N: usize> {

0 commit comments

Comments
 (0)