aboutsummaryrefslogtreecommitdiff
path: root/src/transport/mod.rs
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-07-05 23:37:39 +0200
committermetamuffin <metamuffin@disroot.org>2024-07-05 23:37:39 +0200
commita4c52bedef04cfb927f3d7809680fed0425a5125 (patch)
tree96e11f458049a3944fbfd1bd30fe9826d385c80d /src/transport/mod.rs
parentb5e408b02cd99a7833faab9b46d33042786c568c (diff)
downloadsip-rs-a4c52bedef04cfb927f3d7809680fed0425a5125.tar
sip-rs-a4c52bedef04cfb927f3d7809680fed0425a5125.tar.bz2
sip-rs-a4c52bedef04cfb927f3d7809680fed0425a5125.tar.zst
udp transport
Diffstat (limited to 'src/transport/mod.rs')
-rw-r--r--src/transport/mod.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/transport/mod.rs b/src/transport/mod.rs
index 3fa82df..cf49d31 100644
--- a/src/transport/mod.rs
+++ b/src/transport/mod.rs
@@ -2,6 +2,7 @@ use crate::encoding::{request::Request, response::Response};
use anyhow::Result;
pub mod tcp;
+pub mod udp;
#[allow(async_fn_in_trait)]
pub trait Transport {