Home
last modified time | relevance | path

Searched refs:IpListenEndpoint (Results 1 – 4 of 4) sorted by relevance

/smoltcp-0.9.1/src/socket/
Dudp.rs10 use crate::wire::{IpEndpoint, IpListenEndpoint, IpProtocol, IpRepr, UdpRepr};
47 endpoint: IpListenEndpoint,
62 endpoint: IpListenEndpoint::default(), in new()
110 pub fn endpoint(&self) -> IpListenEndpoint { in endpoint() argument
146 pub fn bind<T: Into<IpListenEndpoint>>(&mut self, endpoint: T) -> Result<(), BindError> { in bind()
170 self.endpoint = IpListenEndpoint::default(); in close()
Dicmp.rs16 use crate::wire::{IpAddress, IpListenEndpoint, IpProtocol, IpRepr};
52 Udp(IpListenEndpoint),
Dtcp.rs16 IpAddress, IpEndpoint, IpListenEndpoint, IpProtocol, IpRepr, TcpControl, TcpRepr, TcpSeqNumber,
369 listen_endpoint: IpListenEndpoint,
458 listen_endpoint: IpListenEndpoint::default(), in new()
676 self.listen_endpoint = IpListenEndpoint::default(); in reset()
705 T: Into<IpListenEndpoint>, in listen() argument
770 U: Into<IpListenEndpoint>, in connect() argument
773 let local_endpoint: IpListenEndpoint = local_endpoint.into(); in connect()
2306 const LISTEN_END: IpListenEndpoint = IpListenEndpoint {
/smoltcp-0.9.1/src/wire/
Dmod.rs166 ListenEndpoint as IpListenEndpoint, Protocol as IpProtocol, Repr as IpRepr,