Source file
src/net/platform_unix_test.go
1
2
3
4
5
6
7 package net
8
9 import (
10 "os/exec"
11 "runtime"
12 "strconv"
13 )
14
15 var unixEnabledOnAIX bool
16
17 func init() {
18 if runtime.GOOS == "aix" {
19
20
21
22
23 out, _ := exec.Command("oslevel", "-s").Output()
24 if len(out) >= len("7200-XX-ZZ-YYMM") {
25 aixVer := string(out[:4])
26 tl, _ := strconv.Atoi(string(out[5:7]))
27 unixEnabledOnAIX = aixVer > "7200" || (aixVer == "7200" && tl >= 2)
28 }
29 }
30 }
31
32 func supportsUnixSocket() bool {
33 switch runtime.GOOS {
34 case "android", "ios":
35 return false
36 case "aix":
37 return unixEnabledOnAIX
38 }
39 return true
40 }
41
View as plain text