github.com/dolthub/go-mysql-server@v0.18.0/internal/sockstate/netstat_darwin.go (about) 1 // Copyright 2020-2021 Dolthub, Inc. 2 // 3 // Licensed under the Apache License, Version 2.0 (the "License"); 4 // you may not use this file except in compliance with the License. 5 // You may obtain a copy of the License at 6 // 7 // http://www.apache.org/licenses/LICENSE-2.0 8 // 9 // Unless required by applicable law or agreed to in writing, software 10 // distributed under the License is distributed on an "AS IS" BASIS, 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 // See the License for the specific language governing permissions and 13 // limitations under the License. 14 15 //go:build darwin 16 // +build darwin 17 18 package sockstate 19 20 import ( 21 "net" 22 23 "github.com/sirupsen/logrus" 24 ) 25 26 // tcpSocks returns a slice of active TCP sockets containing only those 27 // elements that satisfy the accept function 28 func tcpSocks(accept AcceptFn) ([]sockTabEntry, error) { 29 // (juanjux) TODO: not implemented 30 logrus.Warn("Connection checking not implemented for Darwin") 31 return nil, ErrSocketCheckNotImplemented.New() 32 } 33 34 func GetConnInode(c *net.TCPConn) (uint64, error) { 35 _, err := getConnFd(c) 36 if err != nil { 37 return 0, err 38 } 39 return 0, ErrSocketCheckNotImplemented.New() 40 }