This reverts commit f14836a750
.
jonathan/corp-19070
parent
f14836a750
commit
a325a90558
@ -1,47 +0,0 @@
|
||||
// Copyright (c) Tailscale Inc & AUTHORS
|
||||
// SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
package libtailscale
|
||||
|
||||
import (
|
||||
"log"
|
||||
|
||||
"tailscale.com/util/syspolicy"
|
||||
)
|
||||
|
||||
// androidHandler is a syspolicy handler for the Android version of the Tailscale client,
|
||||
// which lets the main networking code read values set via the Android RestrictionsManager.
|
||||
type androidHandler struct {
|
||||
a *App
|
||||
}
|
||||
|
||||
func (h androidHandler) ReadString(key string) (string, error) {
|
||||
if key == "" {
|
||||
return "", syspolicy.ErrNoSuchKey
|
||||
}
|
||||
retVal, err := h.a.appCtx.GetSyspolicyStringValue(key)
|
||||
if err != nil {
|
||||
log.Printf("syspolicy: failed to get string value via gomobile: %v", err)
|
||||
}
|
||||
return retVal, err
|
||||
}
|
||||
|
||||
func (h androidHandler) ReadBoolean(key string) (bool, error) {
|
||||
if key == "" {
|
||||
return false, syspolicy.ErrNoSuchKey
|
||||
}
|
||||
retVal, err := h.a.appCtx.GetSyspolicyBooleanValue(key)
|
||||
if err != nil {
|
||||
log.Printf("syspolicy: failed to get bool value via gomobile: %v", err)
|
||||
}
|
||||
return retVal, err
|
||||
}
|
||||
|
||||
func (h androidHandler) ReadUInt64(key string) (uint64, error) {
|
||||
if key == "" {
|
||||
return 0, syspolicy.ErrNoSuchKey
|
||||
}
|
||||
// TODO(angott): drop ReadUInt64 everywhere. We are not using it.
|
||||
log.Fatalf("ReadUInt64 is not implemented on Android")
|
||||
return 0, nil
|
||||
}
|
Loading…
Reference in New Issue