Sample code for 30+ languages & platforms
Rust

Send a Single Byte over a Socket

See more Socket/SSL/TLS Examples

Demonstrates Socket.SendByte, which sends one byte whose value is in the range 0 through 255.

Background. Fixed-size integers and length prefixes are common building blocks for application-defined binary protocols. Byte order is selectable, with big-endian being network byte order.

Chilkat Rust Downloads

Rust

let socket = chilkat::Socket::new();

// Connect to the server using TLS.
let b_tls = true;
let max_wait_ms = 5000;
if socket.connect("example.com", 5000, b_tls, max_wait_ms).is_err() {
    println!("{}", socket.last_error_text());
    return;
}

// Send a single byte.  The value must be in the range 0 through 255.
if socket.send_byte(65).is_err() {
    println!("{}", socket.last_error_text());
    return;
}

println!("Byte sent.");