diff options
author | Henauxg <19689618+Henauxg@users.noreply.github.com> | 2023-01-18 17:51:56 +0100 |
---|---|---|
committer | Henauxg <19689618+Henauxg@users.noreply.github.com> | 2023-01-18 17:51:56 +0100 |
commit | 98ac9e3e6467df01aeb32fc0ef439689ef850e54 (patch) | |
tree | 54807699d238138e29ab57031737c875ea942c49 /src/client.rs | |
parent | 2cdc927d7849c7b2713271ad9d8e165cdb52cfc7 (diff) |
[shared] Move InternalConnectionRef to shared
Diffstat (limited to 'src/client.rs')
-rw-r--r-- | src/client.rs | 5 |
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, }, }; |