-
Notifications
You must be signed in to change notification settings - Fork 446
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
133 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
mod utils; | ||
|
||
use log::debug; | ||
|
||
use smoltcp::iface::{Config, Interface, SocketSet}; | ||
use smoltcp::phy::{Device, Loopback, Medium}; | ||
use smoltcp::socket::tcp; | ||
use smoltcp::time::Instant; | ||
use smoltcp::wire::{EthernetAddress, IpAddress, IpCidr}; | ||
|
||
fn main() { | ||
let device = Loopback::new(Medium::Ethernet); | ||
|
||
let mut device = { | ||
utils::setup_logging("info"); | ||
|
||
let (mut opts, mut free) = utils::create_options(); | ||
utils::add_middleware_options(&mut opts, &mut free); | ||
|
||
let mut matches = utils::parse_options(&opts, free); | ||
utils::parse_middleware_options(&mut matches, device, /*loopback=*/ true) | ||
}; | ||
|
||
// Create interface | ||
let config = match device.capabilities().medium { | ||
Medium::Ethernet => { | ||
Config::new(EthernetAddress([0x02, 0x00, 0x00, 0x00, 0x00, 0x01]).into()) | ||
} | ||
Medium::Ip => Config::new(smoltcp::wire::HardwareAddress::Ip), | ||
Medium::Ieee802154 => todo!(), | ||
}; | ||
|
||
let mut iface = Interface::new(config, &mut device, Instant::now()); | ||
iface.update_ip_addrs(|ip_addrs| { | ||
ip_addrs | ||
.push(IpCidr::new(IpAddress::v4(127, 0, 0, 1), 8)) | ||
.unwrap(); | ||
}); | ||
|
||
// Create sockets | ||
let server_socket = { | ||
let tcp_rx_buffer = tcp::SocketBuffer::new(vec![0; 65536]); | ||
let tcp_tx_buffer = tcp::SocketBuffer::new(vec![0; 65536]); | ||
tcp::Socket::new(tcp_rx_buffer, tcp_tx_buffer) | ||
}; | ||
|
||
let client_socket = { | ||
let tcp_rx_buffer = tcp::SocketBuffer::new(vec![0; 65536]); | ||
let tcp_tx_buffer = tcp::SocketBuffer::new(vec![0; 65536]); | ||
tcp::Socket::new(tcp_rx_buffer, tcp_tx_buffer) | ||
}; | ||
|
||
let mut sockets: [_; 2] = Default::default(); | ||
let mut sockets = SocketSet::new(&mut sockets[..]); | ||
let server_handle = sockets.add(server_socket); | ||
let client_handle = sockets.add(client_socket); | ||
|
||
let start_time = Instant::now(); | ||
|
||
let mut did_listen = false; | ||
let mut did_connect = false; | ||
let mut processed = 0; | ||
while processed < 1024 * 1024 * 1024 { | ||
iface.poll(Instant::now(), &mut device, &mut sockets); | ||
|
||
let socket = sockets.get_mut::<tcp::Socket>(server_handle); | ||
if !socket.is_active() && !socket.is_listening() { | ||
if !did_listen { | ||
debug!("listening"); | ||
socket.listen(1234).unwrap(); | ||
did_listen = true; | ||
} | ||
} | ||
|
||
while socket.can_recv() { | ||
let received = socket.recv(|buffer| (buffer.len(), buffer.len())).unwrap(); | ||
debug!("got {:?}", received,); | ||
processed += received; | ||
} | ||
|
||
let socket = sockets.get_mut::<tcp::Socket>(client_handle); | ||
let cx = iface.context(); | ||
if !socket.is_open() { | ||
if !did_connect { | ||
debug!("connecting"); | ||
socket | ||
.connect(cx, (IpAddress::v4(127, 0, 0, 1), 1234), 65000) | ||
.unwrap(); | ||
did_connect = true; | ||
} | ||
} | ||
|
||
while socket.can_send() { | ||
debug!("sending"); | ||
socket.send(|buffer| (buffer.len(), ())).unwrap(); | ||
} | ||
} | ||
|
||
let duration = Instant::now() - start_time; | ||
println!( | ||
"done in {} s, bandwidth is {} Gbps", | ||
duration.total_millis() as f64 / 1000.0, | ||
(processed as u64 * 8 / duration.total_millis()) as f64 / 1000000.0 | ||
); | ||
} |