Gabi

Results 33 issues of Gabi

When trying to load an sprite sheet generated by the CLI using: ```rust let sheet_handle = { let loader = world.read_resource::(); let sheet_storage = world.read_resource::(); loader.load( "sprites/sprite_sheet.ron", SpriteSheetFormat(texture_handle), (), &sheet_storage,...

Co-authored-by: Thomas Eizinger Resolves: #3377.

This is only relevant on the context of #3391

area/connlib
area/gateway
area/linux_client

Right now when a token is expired while a client is connected, a message is sent. We need to either: disconnect the socket from the portal and get a 401...

area/connlib

all `unsafe` should have an associated `SAFETY` comment.

area/connlib
kind/chore
complexity/low

We should assume that any `init` message is a source of truth and change our state to match it.

kind/feature
area/connlib

Currently the gateway gets the DNS resolution using `ToSockAddr` trait which doesn't expose the DNS response, with fields such as the TTL. We need to change it, get the proper...

area/connlib
area/gateway
complexity/hard
kind/feedback

**Describe the bug** SSIA **To Reproduce** with firezone on and `*.google.com` as a domain: ``` dig client.1.google.com ``` **Expected behavior** just get the SOA answer: ``` ; DiG 9.10.6 client.1.google.com...

kind/bug
area/connlib

We're using the info obtained with `PKT_INFO`, particularly the destination IP, on multiple platforms including on android. Most of the socket options used for linux, save for GRO, are available...