最近開始接觸websocket,第一次裝的時候,還是遇到了些問題,這裡記錄一下 1.從git下載uWebSockets 地址:https://github.com/uNetworking/uWebSockets git clone https://github.com/uNetworking/uWe ...
最近開始接觸websocket,第一次裝的時候,還是遇到了些問題,這裡記錄一下
1.從git下載uWebSockets
地址:https://github.com/uNetworking/uWebSockets
git clone https://github.com/uNetworking/uWebSockets.git
2.第一步下載下來的uSockets目錄是空的,需要單獨下載,是另外一個git倉庫
地址:https://github.com/uNetworking/uSockets
git clone https://github.com/uNetworking/uSockets.git
3.安裝openssl開發包
apt-get install libssl-dev
4.編譯
最新的uWebSockets使用的是c++17,這個版本有點高,可以切換到c++11標準的分支v0.14
git checkout v0.14
make
make install
5.需要註意的地方,可能會編譯出錯,openssl的版本需要匹配1.1.1