socktop-webterm/tmp_bind.rs
jasonwitty 6e48c095ab Initial commit: Socktop WebTerm with k3s deployment
- Multi-architecture Docker image (ARM64 + AMD64)
- Kubernetes manifests for 3-replica deployment
- Traefik ingress configuration
- NGINX Proxy Manager integration
- ConfigMap-based configuration
- Automated build and deployment scripts
- Session monitoring tools
2025-11-28 01:31:33 -08:00

8 lines
194 B
Rust

use std::net::TcpListener;
fn main(){
match TcpListener::bind("0.0.0.0:8082") {
Ok(_) => println!("std TcpListener bind ok"),
Err(e) => println!("std TcpListener bind failed: {}", e),
}
}