Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 514 Bytes

README.md

File metadata and controls

16 lines (10 loc) · 514 Bytes

TinySock

A simple Websocket Server built from ground-up using Multi-threaded Java

Description

A small experiment to understand how to handle mutliple socket connections by writing low-level java code. This project implements following parts of the WebSocket Standard

  • The websocket Handshake
  • Parsing Text Client Messages
  • Sending Messages to Client (long messages are also handled according to the RFC standard)

TODO:

  • Integrate the server with existing projects
  • Add support for Blob messages