I am making a small http server on an esp32s3, and this library would be very useful for a lightweight WebSocket handling.
When trying to use the async framer to accept websocket connections, I noticed that the async framer, does not have an accept method. This is different from the blocking version.
Seeing the blocking version of the accept method, its implementation seems to be relatively simple. Would it actually be simple? Or would its implementation be complex for a reason I am overlooking?
I am making a small http server on an esp32s3, and this library would be very useful for a lightweight WebSocket handling.
When trying to use the async framer to accept websocket connections, I noticed that the async framer, does not have an
acceptmethod. This is different from the blocking version.Seeing the blocking version of the
acceptmethod, its implementation seems to be relatively simple. Would it actually be simple? Or would its implementation be complex for a reason I am overlooking?