1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-09 00:00:04 +01:00

docs: force markdown to render correct path

This commit is contained in:
Andy Green 2020-09-16 13:02:04 +01:00
parent aa539e607b
commit d41bb16074
2 changed files with 5 additions and 5 deletions

View file

@ -13,11 +13,11 @@ creation, but able to be updated from a remote copy.
Both client and server networking can be handled using Secure Streams APIS.
![overview](../doc-assets/ss-operation-modes.png)
![overview](/doc-assets/ss-operation-modes.png)
## Secure Streams CLIENT State lifecycle
![overview](../doc-assets/ss-state-flow.png)
![overview](/doc-assets/ss-state-flow.png)
Secure Streams are created using `lws_ss_create()`, after that they may acquire
underlying connections, and lose them, but the lifecycle of the Secure Stream
@ -55,7 +55,7 @@ destroy the handle themselves, in that case the handler should return
## Secure Streams SERVER State lifecycle
![overview](../doc-assets/ss-state-flow-server.png)
![overview](/doc-assets/ss-state-flow-server.png)
You can also run servers defined using Secure Streams, the main difference is
that the user code must assertively create a secure stream of the server type

View file

@ -4,7 +4,7 @@ Lws supports multithreaded service... build lws with `-DLWS_MAP_SMP=<max number
default is 1. If nonzero, some extra pthreads locking is built into lws and it supports multiple
independent service threads.
![lws-smp-overview](../../doc-assets/lws-smp-ov.png)
![lws-smp-overview](/doc-assets/lws-smp-ov.png)
When an incoming connection is accepted, it is bound to the pt with the lowest current wsi
count, to keep the load on the threads balanced. Only the pt the wsi is bound to can service
@ -13,7 +13,7 @@ service threads, a wsi can only be service by the pt it is bound to.
The effectiveness of the scalability depends on the load. Here is an example of roughly what can be expected
![lws-smp-example](../../doc-assets/lws-smp-example.png)
![lws-smp-example](/doc-assets/lws-smp-example.png)
## build