summaryrefslogtreecommitdiffstats
path: root/src/types/endpoint.rs
blob: d97905afa9e5a8d27123a4fa5a5867841340163f (plain) (blame)
1
2
3
4
5
6
use std::net::SocketAddr;

/* The generic implementation (not supporting "sticky-sockets"),
 * is to simply use SocketAddr directly as the endpoint.
 */
pub trait Endpoint: Into<SocketAddr> {}