ba9f5dfd05
- C runtime: socket(), bind(), listen(), accept(), connect(), send(), recv(), close() - library/std/Net.bux: Net_Create, Net_Bind, Net_Listen, Net_Accept, Net_Connect, Net_Send, Net_Recv, Net_Close, Net_SetReuse, Net_LastError - examples/tcp_server.bux: echo server on 127.0.0.1:9000 - examples/tcp_client.bux: client that sends 'Hello from Bux!' and prints reply
61 lines
1.5 KiB
Plaintext
61 lines
1.5 KiB
Plaintext
// TCP Echo Server — binds to 127.0.0.1:9000 and echoes back received data
|
|
import Std::Io::{PrintLine, PrintInt};
|
|
import Std::Net::{Net_Create, Net_SetReuse, Net_Bind, Net_Listen, Net_Accept, Net_Send, Net_Recv, Net_Close};
|
|
import Std::String::{String_Eq};
|
|
|
|
func Main() -> int {
|
|
let fd: int = Net_Create();
|
|
if fd < 0 {
|
|
PrintLine("Failed to create socket");
|
|
return 1;
|
|
}
|
|
|
|
if !Net_SetReuse(fd) {
|
|
PrintLine("Warning: failed to set SO_REUSEADDR");
|
|
}
|
|
|
|
if Net_Bind(fd, "127.0.0.1", 9000) == false {
|
|
PrintLine("Failed to bind");
|
|
Net_Close(fd);
|
|
return 1;
|
|
}
|
|
|
|
if Net_Listen(fd, 5) == false {
|
|
PrintLine("Failed to listen");
|
|
Net_Close(fd);
|
|
return 1;
|
|
}
|
|
|
|
PrintLine("Echo server listening on 127.0.0.1:9000");
|
|
|
|
let client: int = Net_Accept(fd);
|
|
if client < 0 {
|
|
PrintLine("Failed to accept");
|
|
Net_Close(fd);
|
|
return 1;
|
|
}
|
|
|
|
PrintLine("Client connected");
|
|
|
|
var running: bool = true;
|
|
while running {
|
|
let msg: String = Net_Recv(client, 1024);
|
|
if String_Eq(msg, "") {
|
|
running = false;
|
|
} else {
|
|
PrintLine("Received:");
|
|
PrintLine(msg);
|
|
let sent: int = Net_Send(client, msg);
|
|
if sent < 0 {
|
|
PrintLine("Send failed");
|
|
running = false;
|
|
}
|
|
}
|
|
}
|
|
|
|
Net_Close(client);
|
|
Net_Close(fd);
|
|
PrintLine("Server shut down");
|
|
return 0;
|
|
}
|