Go to file
michael-bailey 228de2ced8 fixed issue with erronious request input from clients 2024-05-11 16:53:07 +01:00
.github/workflows merge develop into master (#20) 2023-12-01 21:48:28 +00:00
client moved client stuff into foundation. 2024-05-11 16:37:28 +01:00
docs added docs? 2024-04-18 12:48:05 +01:00
foundation revamped the connection and protocolm structure to allow addition of other protocols 2024-05-11 16:40:27 +01:00
protocol revamped the connection and protocolm structure to allow addition of other protocols 2024-05-11 16:40:27 +01:00
server fixed issue with erronious request input from clients 2024-05-11 16:53:07 +01:00
.dockerignore merge develop into master (#20) 2023-12-01 21:48:28 +00:00
.gitignore merge develop into master (#20) 2023-12-01 21:48:28 +00:00
Cargo.toml Createde Cursive client for testing protocol stuff 2024-04-18 12:47:59 +01:00
Dockerfile merge develop into master (#20) 2023-12-01 21:48:28 +00:00
LICENSE Update LICENSE 2021-02-08 21:12:10 +00:00
README.md Update README.md (#16) 2021-08-03 21:54:04 +01:00
rustfmt.toml merge develop into master (#20) 2023-12-01 21:48:28 +00:00

README.md

Rust-chat-server

A Chat server writen in rust to allow communication between peers.


Features:

  • implemented:
    • json based API.
    • Server introspection.
    • Peer discovery.
    • sending messages to connected clients.
  • todo:
    • Encryption to server.
    • server to server meshing.
    • asynchronous client managment instead of threaded approach.

Goals:

  • Learn the rust programming lanaguage.
    • Ownership: how that affects normal programming styles.
    • Borrowing and references: how this affects shared state.
    • Lifetimes: how this affects data retention and sharing.
  • Learn how to create networked programs.
    • Application level protocol: how to get two programs to communicate via TCP sockets.
    • Socket handling: Discovering ways to handle multiple socket connections without affecting performance.
  • Learn common encryption protocols.
    • Adding support for encrypted sockets.
    • Pros and cons of symetric and asymetric encryption.
    • resolving common encryption flaws

Questions: For questions please add a issue with the question label. It will eventually be responded to