deleisha / evt-tls

The asynchronous TLS abstraction for OpenSSL

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

where is uv_read_start?

hh9527 opened this issue · comments

uv_read_start give a way to alloc buffer by user, but it seemed there is no way to do this with evt_tls.

evt-tls is an abstraction on top of OpenSSL's BIO pair(currently) which can be used with any async library including libuv.
The idea is NIO is handled by library like libuv and fed the received data for processing to evt-tls and which calls us back when processing is done.
So, It us upto the user to use his nice allocation skills with libuv. evt does not handle that.

We have sample integration with libuv but that does not to be used as it is. It is just for demo.

You can combine it any way you like.

Closing this