LinuxSystemProxy fans out proxy configuration to every available backend on the host. A backend that is not installed (e.g., gsettings on a KDE-only system) is silently skipped; if no backend is available, Set returns an error so the caller can surface it to the user.
| 47 | // system) is silently skipped; if no backend is available, Set returns an |
| 48 | // error so the caller can surface it to the user. |
| 49 | type LinuxSystemProxy struct { |
| 50 | router *Router |
| 51 | backends []linuxBackend |
| 52 | |
| 53 | mu sync.Mutex |
| 54 | } |
| 55 | |
| 56 | var _ SystemProxy = (*LinuxSystemProxy)(nil) |
| 57 |
nothing calls this directly
no outgoing calls
no test coverage detected