fix warnings
This commit is contained in:
parent
f5f3aba8d1
commit
a042d9d29e
1 changed files with 4 additions and 4 deletions
|
@ -140,9 +140,9 @@ impl NetLoop {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn new(mut ctx: ClientContext, sock: AnyStream) -> Result<Self> {
|
async fn new(ctx: ClientContext, sock: AnyStream) -> Result<Self> {
|
||||||
// Send greeting
|
// Send greeting
|
||||||
let (mut server, _) = ServerFlow::send_greeting(
|
let (server, _) = ServerFlow::send_greeting(
|
||||||
sock,
|
sock,
|
||||||
ServerFlowOptions {
|
ServerFlowOptions {
|
||||||
crlf_relaxed: false,
|
crlf_relaxed: false,
|
||||||
|
@ -159,8 +159,8 @@ impl NetLoop {
|
||||||
.await?;
|
.await?;
|
||||||
|
|
||||||
// Start a mailbox session in background
|
// Start a mailbox session in background
|
||||||
let (cmd_tx, mut cmd_rx) = mpsc::channel::<Request>(3);
|
let (cmd_tx, cmd_rx) = mpsc::channel::<Request>(3);
|
||||||
let (resp_tx, mut resp_rx) = mpsc::unbounded_channel::<ResponseOrIdle>();
|
let (resp_tx, resp_rx) = mpsc::unbounded_channel::<ResponseOrIdle>();
|
||||||
tokio::spawn(Self::session(ctx.clone(), cmd_rx, resp_tx));
|
tokio::spawn(Self::session(ctx.clone(), cmd_rx, resp_tx));
|
||||||
|
|
||||||
// Return the object
|
// Return the object
|
||||||
|
|
Loading…
Reference in a new issue