rust/tests/run-make/windows-ws2_32/tcp.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
90 B
Rust
Raw Normal View History

use std::net::TcpListener;
fn main() {
TcpListener::bind("127.0.0.1:80").unwrap();
}