aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/hashicorp/go-sockaddr/route_info_solaris.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/hashicorp/go-sockaddr/route_info_solaris.go')
-rw-r--r--vendor/github.com/hashicorp/go-sockaddr/route_info_solaris.go37
1 files changed, 0 insertions, 37 deletions
diff --git a/vendor/github.com/hashicorp/go-sockaddr/route_info_solaris.go b/vendor/github.com/hashicorp/go-sockaddr/route_info_solaris.go
deleted file mode 100644
index ee8e798..0000000
--- a/vendor/github.com/hashicorp/go-sockaddr/route_info_solaris.go
+++ /dev/null
@@ -1,37 +0,0 @@
-package sockaddr
-
-import (
- "errors"
- "os/exec"
-)
-
-var cmds map[string][]string = map[string][]string{
- "route": {"/usr/sbin/route", "-n", "get", "default"},
-}
-
-type routeInfo struct {
- cmds map[string][]string
-}
-
-// NewRouteInfo returns a BSD-specific implementation of the RouteInfo
-// interface.
-func NewRouteInfo() (routeInfo, error) {
- return routeInfo{
- cmds: cmds,
- }, nil
-}
-
-// GetDefaultInterfaceName returns the interface name attached to the default
-// route on the default interface.
-func (ri routeInfo) GetDefaultInterfaceName() (string, error) {
- out, err := exec.Command(cmds["route"][0], cmds["route"][1:]...).Output()
- if err != nil {
- return "", err
- }
-
- var ifName string
- if ifName, err = parseDefaultIfNameFromRoute(string(out)); err != nil {
- return "", errors.New("No default interface found")
- }
- return ifName, nil
-}