erlang documentation can be kinda impenetrable at times, supposedly i should use :inet.getopts to get socket options and the options should be the same as in setopts, except it refuses to return anything except {:error, :einval}
@helene@p.helene.moe the documentation implies to me that i should be able to use it with the same arguments as setopts so I've tried: :inet.getopts(conn, [{:recvbuf}]) :inet.getopts(conn, [{:recvbuf, 1024}])
@helene@p.helene.moe basically I've got behaviour which suggests I've set a receive buffer limit that's too high and it's remained at some default but I want to verify that this is the case but I can't work out how to call this function
@helene@p.helene.moe ah, that works, thank you! this confirms that the receive buffer is being set to something other than what I want to configure too, that's annoying