elixir-socket
elixir-socket copied to clipboard
Socket wrapping for Elixir.
``` % elixir --version Erlang/OTP 24 [erts-12.3.2.1] [source] [64-bit] [smp:12:12] [ds:12:12:10] [async-threads:1] [jit] Elixir 1.12.2 (compiled with Erlang/OTP 24) ``` ``` ... warning: :ssl.cipher_suites/0 is undefined or private, use cipher_suites/2,3...
With Elixir 1.12.2 (compiled with Erlang/OTP 24), there are warnings: ``` warning: ^^^ is deprecated. It is typically used as xor but it has the wrong precedence, use Bitwise.bxor/2 instead...
I'm trying to use the `ipv6_v6only` option to my socket but I always get a FunctionClauseError. Reading the source code, it seems there is no way to send [the full...
Hi Meh, I see in the README this library should wrap gen_sctp, but I don't see this in the code. Is this a WIP? Thanks, Lee
To further improve the code quality of elixir-socket, add a github action. The action makes sure to build and test the project against a combinations of erlang and elixir versions.
I'm trying to connect to a socket (ssl) ```elixir Socket.Web.connect! "stream-api.betfair.com", secure: true ``` But I'm facing with this error: ```error ** (MatchError) no match of right hand side value:...
Websocket I'm trying to connect to is behind a proxy that takes a basic authentication during connection. Is there some way of specifying headers during the initial connect phase? My...