Added examples for a simple WebSocket client and Server.

Removed automatic ping pong response, and disconnection from fr::WebSocket, as it should be handled by the library user, really.

Updated ReadMe.
This commit is contained in:
Unknown
2018-03-03 16:02:17 +00:00
parent fa843b57c8
commit 13f709aebb
8 changed files with 24 additions and 52 deletions

View File

@@ -1 +1,2 @@
add_subdirectory(simple_server_and_client)
add_subdirectory(simple_http_server_and_client)
add_subdirectory(simple_websocket_server_and_client)

View File

@@ -47,6 +47,6 @@ int main()
}
//Close connection
client.close_socket();
client.disconnect();
}
}