Franco Bugnano
Franco Bugnano
> Alternatively, showing how the backend wrapper does / doesn't work for your use case might also help. So, let's pretend that I have an app that uses the alternate...
> P.S. @bugnano I mistook your use case for the Ratatui server use case that was the reason for this PR in the first case. Apologies for the confusion there....
From the additional context I see that you're not using the alternate screen, whereas the crossterm example uses it. To use the alternate screen with Termion, instead of doing: ```rust...
I confirm that binding to `::` binds dualstack: ``` UNCONN 0 0 *:4433 *:* users:(("beam.smp",pid=5151,fd=20)) uid:1000 ino:48796 sk:3001 cgroup:/user.slice/user-1000.slice/[email protected]/app.slice/app-org.gnome.Terminal.slice/vte-spawn-f3042582-c0bb-4356-8771-3b1f28ecadd8.scope v6only:0 ``` Notice the `v6only:0` flag. While I know that there...
> However, nothing stops you from having multiple endpoints for your server. True, but isn't building multiple sockets less efficient than having only one? I mean I'd like to have...
On further testing, binding with: ```rust let config = ServerConfig::builder() .with_bind_config(wtransport::config::IpBindConfig::LocalDual, port) .with_certificate(certificate) .keep_alive_interval(Some(Duration::from_secs(3))) .build(); ``` the output of `ss -ulpen` is as follows: ``` UNCONN 0 0 [::1]:4433 [::]:*...
The code where the warning is is like so: ```elixir def delete( %Call{params: %{"conversation_params" => conversation_param_or_id}} = call, %Session{app_id: app_id} = session ) when auth_scope(session, :app) do ``` So there's...
I don't know if it's dead code. I mean, on other parts of our codebase we use that guard with a `Conn` struct, so both parts of the guard are...
Got it, thank you😁
I acknowledge that `test -x` always returns true for all files in the mounted archive. Unfortunately I don't have the time to fix this problem. If you want to send...