Rust
Rust
Send a 16-bit Integer over a Socket
See more Socket/SSL/TLS Examples
Demonstrates Socket.SendInt16, which sends the low 16 bits of a value as a two-byte integer in the selected byte order.
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
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 the low 16 bits of the value as a two-byte integer. Use true for network byte order
// (big-endian) or false for little-endian.
let b_big_endian = true;
if socket.send_int16(1024, b_big_endian).is_err() {
println!("{}", socket.last_error_text());
return;
}
println!("16-bit integer sent.");