mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-06 05:17:49 +00:00
21c074cc2c
refactor: replace empty slice literal with `var` An empty slice can be represented by `nil` or an empty slice literal. They are functionally equivalent — their `len` and `cap` are both zero — but the `nil` slice is the preferred style. For more information about empty slices, see [Declaring Empty Slices](https://github.com/golang/go/wiki/CodeReviewComments#declaring-empty-slices). Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com>
53 lines
1.0 KiB
Go
53 lines
1.0 KiB
Go
// Copyright (C) 2015 The Syncthing Authors.
|
|
//
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
// You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
|
|
package osutil
|
|
|
|
import (
|
|
"net"
|
|
)
|
|
|
|
func GetLans() ([]*net.IPNet, error) {
|
|
ifs, err := net.Interfaces()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
var addrs []net.Addr
|
|
|
|
for _, currentIf := range ifs {
|
|
if currentIf.Flags&net.FlagUp != net.FlagUp {
|
|
continue
|
|
}
|
|
currentAddrs, err := currentIf.Addrs()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
addrs = append(addrs, currentAddrs...)
|
|
}
|
|
|
|
nets := make([]*net.IPNet, 0, len(addrs))
|
|
|
|
for _, addr := range addrs {
|
|
net, ok := addr.(*net.IPNet)
|
|
if ok {
|
|
nets = append(nets, net)
|
|
}
|
|
}
|
|
return nets, nil
|
|
}
|
|
|
|
func IPFromAddr(addr net.Addr) (net.IP, error) {
|
|
switch a := addr.(type) {
|
|
case *net.TCPAddr:
|
|
return a.IP, nil
|
|
case *net.UDPAddr:
|
|
return a.IP, nil
|
|
default:
|
|
host, _, err := net.SplitHostPort(addr.String())
|
|
return net.ParseIP(host), err
|
|
}
|
|
}
|