Squashed 'third_party/seasocks/' content from commit 016dc60

Change-Id: I195fa5bfd0c0e3cc66fbbefcc7b5170bafcf7a36
git-subtree-dir: third_party/seasocks
git-subtree-split: 016dc60b247e0d1d563aea6d22a9075e6884ab9f
94 files changed
tree: 2f63db95ea044c746f52d1948909fc93abb36b17
  1. .settings/
  2. scripts/
  3. src/
  4. .cproject
  5. .gitignore
  6. .project
  7. .travis.yml
  8. configure.ac
  9. LICENSE
  10. Makefile.in
  11. README.md
  12. TODO.md
README.md

SeaSocks - A tiny embeddable C++ HTTP and WebSocket server

Build Status

Features

  • Simple C++ API
  • Serves static content from disk
  • API for building WebSocket servers
  • Simple command line binary for quick serving of static files only
  • Supports newer Hybi-10 and Hybi-16 WebSockets as well as the older Hixie style.

Stuff it doesn't do

It's not nearly as configurable as Apache, Lighttpd, Nginx, Jetty, etc. It provides only very limited support for custom content generation (e.g. Servlets). It has been optimized for WebSocket based control.

Getting started

Check out the tutorial on the wiki.

See src/app/c/ws_test.cpp for an example.