diff --git a/to_be_implemented?/main.rs b/to_be_implemented?/main.rs deleted file mode 100644 index e380a74..0000000 --- a/to_be_implemented?/main.rs +++ /dev/null @@ -1,42 +0,0 @@ -use std::io::Write; -use std::net::{TcpListener, TcpStream}; -use std::thread; -use std::time::Duration; - -fn handle_client(mut stream: TcpStream) { - let mut counter = 0; - - loop { - let variables = [counter, counter + 1, counter + 2]; - let serialized_data = format!("{:?}\n", variables); - - if let Err(e) = stream.write_all(serialized_data.as_bytes()) { - eprintln!("Failed to send data: {}", e); - break; - } - - println!("Sent: {:?}", variables); - counter += 1; - thread::sleep(Duration::from_secs(1)); // Delay to avoid spamming - } -} - -fn main() -> std::io::Result<()> { - let listener = TcpListener::bind("0.0.0.0:4000")?; - println!("Server listening on port 4000"); - - for stream in listener.incoming() { - match stream { - Ok(stream) => { - println!("New connection: {}", stream.peer_addr().unwrap()); - thread::spawn(|| handle_client(stream)); - } - Err(e) => { - eprintln!("Connection failed: {}", e); - } - } - } - - Ok(()) -} - diff --git a/to_be_implemented?/portwhisper.rs b/to_be_implemented?/portwhisper.rs new file mode 100644 index 0000000..b9eceb7 --- /dev/null +++ b/to_be_implemented?/portwhisper.rs @@ -0,0 +1,26 @@ +use std::net::UdpSocket; +use std::thread::sleep; +use std::time::Duration; + +fn main() -> std::io::Result<()> { + // Create a UDP socket bound to port 4000 + let socket = UdpSocket::bind("0.0.0.0:0")?; + let target = "127.0.0.1:4000"; // Target address and port + + // Data to send + let data = [1, 2, 3, 4, 5]; // Example array of variables + + println!("Sending data to {}...", target); + + loop { + // Serialize the data into a byte string + let serialized_data = format!("{:?}\n", data); + // Send the data to the target + if let Err(e) = socket.send_to(serialized_data.as_bytes(), target) { + eprintln!("Failed to send data: {}", e); + } + + // Pause for 1 second + sleep(Duration::from_secs(1)); + } +}