summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaksym <mked@luxoft.com>2020-02-20 10:59:39 +0200
committerMaksym <mked@luxoft.com>2020-02-20 11:29:44 +0200
commit3af95076c6c05d68e46c9d08a5800b9cdb8536df (patch)
treec204cc84d368a39589b9b88454e42a01a68e4d65
parentb0b1c52ead4d9178d0393f0f2c6ebd2b75703f8d (diff)
downloadsdl_core-3af95076c6c05d68e46c9d08a5800b9cdb8536df.tar.gz
fixup! Update SDD
-rw-r--r--src/components/transport_manager/docs/SDL.SDD.WebEngineSupport.dox4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/transport_manager/docs/SDL.SDD.WebEngineSupport.dox b/src/components/transport_manager/docs/SDL.SDD.WebEngineSupport.dox
index 4653ae9d3e..77ab46e247 100644
--- a/src/components/transport_manager/docs/SDL.SDD.WebEngineSupport.dox
+++ b/src/components/transport_manager/docs/SDL.SDD.WebEngineSupport.dox
@@ -42,8 +42,8 @@ All aforementioned entities are part of transport_manager namespace
\anchor wes_design_solutions
### 2.1 Design solutions
-- Introducing extra layers to pass relevant websocket connection data between them
-- Utilizing boost::asio library to establish websocket connection
+- WebSocket server was implemented using several layers (e.g. WebSocketConnection, WebSocketSession, WebSocketSecureSession).
+- Utilizing boost::asio library to host a websocket server and establish websocket connections
- Utilizing asynchronous programming to make all server calls nonblocking
- CRTP and template specialization to facilitate code reuse.