psp_net/types/
mod.rs

1mod socket_flags;
2#[cfg(feature = "psp")]
3mod socket_options;
4
5// re-exports
6pub type Certificate<'a> = embedded_tls::Certificate<'a>;
7
8pub use socket_flags::SocketRecvFlags;
9pub use socket_flags::SocketSendFlags;
10#[cfg(feature = "psp")]
11pub use socket_options::SocketOptions;
12#[cfg(feature = "psp")]
13pub use socket_options::TlsSocketOptions;