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
37 lines
899 B
Plaintext
37 lines
899 B
Plaintext
// TCP Client — connects to 127.0.0.1:9000, sends a message, prints the reply
|
|
import Std::Io::{PrintLine, PrintInt};
|
|
import Std::Net::{Net_Create, Net_Connect, Net_Send, Net_Recv, Net_Close};
|
|
|
|
func Main() -> int {
|
|
let fd: int = Net_Create();
|
|
if fd < 0 {
|
|
PrintLine("Failed to create socket");
|
|
return 1;
|
|
}
|
|
|
|
if Net_Connect(fd, "127.0.0.1", 9000) == false {
|
|
PrintLine("Failed to connect");
|
|
Net_Close(fd);
|
|
return 1;
|
|
}
|
|
|
|
PrintLine("Connected to 127.0.0.1:9000");
|
|
|
|
let msg: String = "Hello from Bux!";
|
|
let sent: int = Net_Send(fd, msg);
|
|
if sent < 0 {
|
|
PrintLine("Send failed");
|
|
Net_Close(fd);
|
|
return 1;
|
|
}
|
|
PrintLine("Message sent");
|
|
|
|
let reply: String = Net_Recv(fd, 1024);
|
|
PrintLine("Server reply:");
|
|
PrintLine(reply);
|
|
|
|
Net_Close(fd);
|
|
PrintLine("Disconnected");
|
|
return 0;
|
|
}
|