update client identifier

This commit is contained in:
nora 2024-08-24 00:55:15 +02:00
parent fec88c6feb
commit 01d6a861f1

View file

@ -59,7 +59,7 @@ enum ClientState {
impl ClientConnection {
pub fn new(rng: impl SshRng + Send + Sync + 'static) -> Self {
let client_ident = b"SSH-2.0-FakeSSH\r\n".to_vec();
let client_ident = b"SSH-2.0-ClueleSSH\r\n".to_vec();
let mut packet_transport = PacketTransport::new();
packet_transport.queue_send_protocol_info(client_ident.clone());