mirror of
https://github.com/Noratrieb/cluelessh.git
synced 2026-01-14 16:35:06 +01:00
more moves
This commit is contained in:
parent
8a627949a3
commit
362d8c57ce
16 changed files with 164 additions and 175 deletions
|
|
@ -4,6 +4,7 @@ version = "0.1.0"
|
|||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
cluelessh-format = { version = "0.1.0", path = "../cluelessh-format" }
|
||||
cluelessh-transport = { path = "../cluelessh-transport" }
|
||||
tracing.workspace = true
|
||||
|
||||
|
|
|
|||
|
|
@ -2,9 +2,10 @@ use std::cmp;
|
|||
use std::collections::{HashMap, VecDeque};
|
||||
use tracing::{debug, info, trace, warn};
|
||||
|
||||
use cluelessh_format::numbers;
|
||||
use cluelessh_transport::packet::Packet;
|
||||
use cluelessh_transport::peer_error;
|
||||
use cluelessh_transport::Result;
|
||||
use cluelessh_transport::{numbers, peer_error};
|
||||
|
||||
/// A channel number (on our side).
|
||||
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
||||
|
|
@ -728,7 +729,8 @@ impl ChannelOperation {
|
|||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use cluelessh_transport::{numbers, packet::Packet};
|
||||
use cluelessh_format::numbers;
|
||||
use cluelessh_transport::packet::Packet;
|
||||
|
||||
use crate::{ChannelNumber, ChannelOperation, ChannelOperationKind, ChannelsState};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue