aboutsummaryrefslogtreecommitdiff
path: root/net/src/transports/unix.rs
diff options
context:
space:
mode:
authorhozan23 <hozan23@proton.me>2024-03-13 12:33:34 +0100
committerhozan23 <hozan23@proton.me>2024-03-13 12:33:34 +0100
commitdf6aad2be4c6c5d11483f20e62d41e71f0ac989e (patch)
treebbbc8db330d254eab993f7e3e4bbdbcbb0b3ec6e /net/src/transports/unix.rs
parent76e952830302271e07a4be9df6dfaa1c11e3e675 (diff)
net: major cleanup and improvement of the crate api
Diffstat (limited to 'net/src/transports/unix.rs')
-rw-r--r--net/src/transports/unix.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/src/transports/unix.rs b/net/src/transports/unix.rs
index 3867040..494e104 100644
--- a/net/src/transports/unix.rs
+++ b/net/src/transports/unix.rs
@@ -69,13 +69,13 @@ impl ConnListener for UnixListener {
}
/// Connects to the given Unix socket path.
-pub async fn dial_unix(path: &String) -> Result<UnixConn> {
+pub async fn dial(path: &String) -> Result<UnixConn> {
let conn = UnixStream::connect(path).await?;
Ok(UnixConn::new(conn))
}
/// Listens on the given Unix socket path.
-pub fn listen_unix(path: &String) -> Result<UnixListener> {
+pub fn listen(path: &String) -> Result<UnixListener> {
let listener = UnixListener::bind(path)?;
Ok(listener)
}