Loïc Hoguin
Loïc Hoguin
Hey, I would deeply appreciate if you could update Cowboy to 1.0 as that would fix compile issues with current erlang.mk. Thanks!
Hi, this would be great. It shouldn't be too difficult to do, and would make axiom compatible with current erlang.mk when used as a dependency.
Nothing private so no need for sending an email. An example build is https://buildkite.com/ninenines/cowlib/builds/141#_ and if you can access this too the agents are https://buildkite.com/organizations/ninenines/agents Basically the agents where this...
An example of a recent build, although the agents are a few versions behind: https://buildkite.com/organizations/ninenines/pipelines/ranch/builds/289/jobs/0de65494-6463-43f8-9209-7299ef376d96/download.txt
I am talking about extra CR characters. This is a screenshot from an editor that can print "invisible" characters (SciTE here):  Instead of CRLF we end...
I had no idea this was even possible but it makes sense in the context of that example. I'm not sure how implementing in `ssl` would look like. For Ranch...
Looked into this a little more: When we try to connect with an invalid cipher, like ECDSA against an RSA certificate, this is what we get on the server side,...
Something like this works: ``` erlang -module(manycerts). -compile(export_all). -include_lib("ssl/src/ssl_api.hrl"). -include_lib("ssl/src/ssl_connection.hrl"). -include_lib("ssl/src/tls_handshake.hrl"). run() -> ssl:start(), {ok, LS} = ssl:listen(22222, [ {certfile, "eccert.pem"}, {keyfile, "eckey.pem"}, {handshake, hello}, {reuseaddr, true} %% Not required,...
Opened https://bugs.erlang.org/browse/ERL-1016
Per the OTP ticket a good patch would add the information we want to the map returned by `ssl:handshake`. I also opened a ticket in Ranch to natively support `handshake/handshake_continue`....