eidheim / Simple-WebSocket-Server

A very simple, fast, multithreaded, platform independent WebSocket (WS) and WebSocket Secure (WSS) server and client library implemented using C++11, Boost.Asio and OpenSSL. Created to be an easy way to make WebSocket endpoints in C++.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

please nest under a namespace (eg:simpleweb) to avoid name clashes

timotheecour opened this issue · comments

symbols should be under a namespace, and includes should be under a toplevel directory, eg:

#include crypto.hpp => #include simpleweb/crypto.hpp

There are two small classes and a namespace outside of the SimpleWeb namespace. I'll move these inside SimpleWeb as well after a minute version release. This is actually being worked on in Simple-Web-Server at the moment (eidheim/Simple-Web-Server@ec63c43).

I kept the directory structure simple due to the number of files, but will reconsider this for the next major version release.