mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-25 19:15:34 +00:00
5bb14c07dc
This gives us 90KB more of memory on iOS, as it shrinks the NetworkExtension binary by 90KB. The netstat binary isn't available in the network extension anyway, so no point pulling in the osexec package which'll just fail to find netstat anyway.
23 lines
455 B
Go
23 lines
455 B
Go
// Copyright (c) 2020 Tailscale Inc & AUTHORS All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// +build darwin,!amd64
|
|
|
|
package portlist
|
|
|
|
import (
|
|
"errors"
|
|
"time"
|
|
)
|
|
|
|
const pollInterval = 9999 * time.Hour
|
|
|
|
func listPorts() (List, error) {
|
|
return nil, errors.New("not implemented")
|
|
}
|
|
|
|
func addProcesses(pl []Port) ([]Port, error) {
|
|
return nil, errors.New("not implemented")
|
|
}
|