Peter Saxton

Results 121 issues of Peter Saxton

To try this escript now it can be installed as follows. ` mix escript.install github crowdhailer/ace branch escript` You can either add the escript dir to you path or just...

Connections that are opened to Ace, but never receive data should be closed after an certain timeout. This is the `idle_timeout` (start_line_timeout). This would be used to mitigate https://en.wikipedia.org/wiki/Slowloris_(computer_security) Although...

Certain applications require knowledge of the connection and not just the HTTP message that was sent. For example inspecting a client ssl certificate or blacklisting particular ip addresses. Adding this...

``` test "start multiple connections" do {:ok, endpoint} = Ace.TCP.start_link({CounterServer, 0}, port: 0) {:ok, port} = Ace.TCP.port(endpoint) {:ok, client1} = :gen_tcp.connect({127, 0, 0, 1}, port, [{:active, false}, :binary]) {:ok, client2}...

A warning is thrown for removing padding however the test does not fail. It is possible the frame is incorrect because it is offer the core of the test. should...

bug
help wanted

Thanks for this library, I have found it helpful on a few occasions. I have a question about a feature that I hope is present and I have just failed...

On this section a link to `Named Tracer` is broken https://hexdocs.pm/opentelemetry_api/OpenTelemetry.html#register_application_tracer/1 I think the correct target is https://github.com/open-telemetry/opentelemetry-specification/blob/master/specification/trace/api.md

This is pretty close to a feature request, but it looks like the right place for it and I'm willing to do much of the work. Is there any interest...

This is a fairly open ended question so I understand the conclusion might be that this is outside the scope of Pow. We are working on a passwordless (device based)...

I am migrating a project to using elixir and arc from one where I previously used ruby and carrier wave. The signed urls are produced in a different way than...