Restore orphaned system proxy after crash, require update SHA-256, add macOS /api auth token, fix UDP ping false positives, HTTPS-only subscriptions, and keep the UI responsive during connect. Co-authored-by: Cursor <cursoragent@cursor.com>
13 lines
384 B
Go
13 lines
384 B
Go
//go:build !windows && !darwin
|
|
|
|
package sysproxy
|
|
|
|
type stubController struct{}
|
|
|
|
func newPlatform() Controller { return stubController{} }
|
|
|
|
func (stubController) Enable(string) error { return ErrUnsupported }
|
|
func (stubController) Disable() error { return nil }
|
|
func (stubController) Enabled() bool { return false }
|
|
func (stubController) ForceDisable() error { return nil }
|