aboutsummaryrefslogtreecommitdiff
path: root/src/client.rs
diff options
context:
space:
mode:
authorHenauxg <19689618+Henauxg@users.noreply.github.com>2023-01-18 17:51:56 +0100
committerHenauxg <19689618+Henauxg@users.noreply.github.com>2023-01-18 17:51:56 +0100
commit98ac9e3e6467df01aeb32fc0ef439689ef850e54 (patch)
tree54807699d238138e29ab57031737c875ea942c49 /src/client.rs
parent2cdc927d7849c7b2713271ad9d8e165cdb52cfc7 (diff)
[shared] Move InternalConnectionRef to shared
Diffstat (limited to 'src/client.rs')
-rw-r--r--src/client.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/client.rs b/src/client.rs
index 0efe051..38176d0 100644
--- a/src/client.rs
+++ b/src/client.rs
@@ -20,7 +20,8 @@ use tokio::{
use crate::shared::{
channel::{ChannelAsyncMessage, ChannelId, ChannelSyncMessage, ChannelType},
- AsyncRuntime, QuinnetError, DEFAULT_KILL_MESSAGE_QUEUE_SIZE, DEFAULT_MESSAGE_QUEUE_SIZE,
+ AsyncRuntime, InternalConnectionRef, QuinnetError, DEFAULT_KILL_MESSAGE_QUEUE_SIZE,
+ DEFAULT_MESSAGE_QUEUE_SIZE,
};
use self::{
@@ -30,7 +31,7 @@ use self::{
},
connection::{
connection_task, Connection, ConnectionConfiguration, ConnectionEvent, ConnectionId,
- ConnectionLostEvent, ConnectionState, InternalConnectionRef,
+ ConnectionLostEvent, ConnectionState,
},
};