1
0
Fork
You've already forked tcp-client-server
0
Simple TCP client-server application to transform text input to all uppercase characters. This may be used as a template for other TCP client-server applications.
  • Rust 100%
gondolyr 9fde8b1564
Add simple TCP client and server
The server accepts UTF-8 string input, transforms the data to contain all
uppercase characters and returns the new string to the client.
This can be used as a template for TCP client-server applications with
more functionality.
2025年09月11日 13:40:05 -04:00
crates Add simple TCP client and server 2025年09月11日 13:40:05 -04:00
LICENSES Add simple TCP client and server 2025年09月11日 13:40:05 -04:00
.editorconfig Add simple TCP client and server 2025年09月11日 13:40:05 -04:00
.gitignore Add simple TCP client and server 2025年09月11日 13:40:05 -04:00
Cargo.lock Add simple TCP client and server 2025年09月11日 13:40:05 -04:00
Cargo.toml Add simple TCP client and server 2025年09月11日 13:40:05 -04:00
deny.toml Add simple TCP client and server 2025年09月11日 13:40:05 -04:00
README.md Add simple TCP client and server 2025年09月11日 13:40:05 -04:00
REUSE.toml Add simple TCP client and server 2025年09月11日 13:40:05 -04:00
rustfmt.toml Add simple TCP client and server 2025年09月11日 13:40:05 -04:00

TCP Client-Server

Simple TCP server that takes an input string and capitalizes all characters from a TCP client.