Sample code for 30+ languages & platforms
Rust

Get the Number of Bytes Buffered on an SSH Channel

See more SSH Examples

Demonstrates the Chilkat Ssh.GetReceivedNumBytes method, which returns how many bytes are currently available in a channel's normal receive buffer. The only argument is the channel number. It returns -1 when the channel number is invalid or its retained resources have been released.

Background: This is a non-consuming look at how much is waiting, useful for deciding whether to retrieve now or keep reading, and for reporting progress on a large transfer. It counts only the normal receive buffer — bytes in the separate stderr buffer are excluded when StderrToStdout is false. Note that data received earlier can remain available even after a disconnect, so a positive count does not imply the connection is still up.

Chilkat Rust Downloads

Rust

// Demonstrates the Ssh.GetReceivedNumBytes method, which returns the number of bytes currently
// available in a channel's normal receive buffer.  The only argument is the channel number.
// It returns -1 for an invalid channel or one whose resources have been released.

let ssh = chilkat::Ssh::new();

let ssh_port = 22;
if ssh.connect("ssh.example.com", ssh_port).is_err() {
    println!("{}", ssh.last_error_text());
    return;
}

// Normally you would not hard-code the password in source.  You should instead obtain it
// from an interactive prompt, environment variable, or a secrets vault.
let password = "mySshPassword".to_string();

if ssh.authenticate_pw("mySshLogin", &password).is_err() {
    println!("{}", ssh.last_error_text());
    return;
}

let channel_num = ssh.open_session_channel();
if channel_num < 0 {
    println!("{}", ssh.last_error_text());
    return;
}

if ssh.send_req_exec(channel_num, "ls -l /tmp").is_err() {
    println!("{}", ssh.last_error_text());
    return;
}

// IMPORTANT: Set a read timeout.  ReadTimeoutMs defaults to 0, which means no limit -- without
// it, this call waits forever if the server never sends channel close.
ssh.set_read_timeout_ms(15000);

if ssh.channel_receive_to_close(channel_num).is_err() {
    println!("{}", ssh.last_error_text());
    return;
}

// Find out how much is waiting before retrieving it.
let num_bytes = ssh.get_received_num_bytes(channel_num);
if num_bytes < 0 {
    println!("Invalid channel, or its resources were already released.");
    return;
}

println!("Bytes available: {}", num_bytes);

let Ok(output) = ssh.get_received_text(channel_num, "utf-8") else {
    println!("{}", ssh.last_error_text());
    return;
};

println!("{}", output);

ssh.disconnect();