aleph

igrishaev 2018-12-07T14:22:06.023700Z

What would be the best way to connect two streams in both directions? To implement a proxy for example.

igrishaev 2018-12-07T14:23:34.025200Z

(s/connect s1 s2) works fine for one direction. But (s/connect s2 s1) leads to strange behavior.

igrishaev 2018-12-07T14:47:03.025900Z

Also, can anybody explain this code: Why there is no circular loop? https://user-images.githubusercontent.com/1059232/49654111-fda6f700-fa47-11e8-9cac-ca6fbfb49b82.png

kachayev 2018-12-10T13:55:47.028300Z

Not sure I got your question correctly, but s/consume is essentially a loop

valerauko 2018-12-07T16:18:54.026600Z

does aleph retry (and if so how many times / how long) if it can't bind the designated port on server start?

kachayev 2018-12-10T14:05:58.028500Z

AFAIK, it does not. aleph relies on netty’s implementation of .bind, and netty calls java.net.Socket bind which throws IOException if the socket is already bound.

valerauko 2018-12-07T16:26:59.027Z

another: what's the simplest way to enable TLS1.3 in aleph http client?