aboutsummaryrefslogtreecommitdiff
path: root/libgo/go/cmd/go/internal/web/security.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/cmd/go/internal/web/security.go')
-rw-r--r--libgo/go/cmd/go/internal/web/security.go16
1 files changed, 16 insertions, 0 deletions
diff --git a/libgo/go/cmd/go/internal/web/security.go b/libgo/go/cmd/go/internal/web/security.go
new file mode 100644
index 00000000000..1dc6f1b076f
--- /dev/null
+++ b/libgo/go/cmd/go/internal/web/security.go
@@ -0,0 +1,16 @@
+// Copyright 2017 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+// Package web defines helper routines for accessing HTTP/HTTPS resources.
+package web
+
+// SecurityMode specifies whether a function should make network
+// calls using insecure transports (eg, plain text HTTP).
+// The zero value is "secure".
+type SecurityMode int
+
+const (
+ Secure SecurityMode = iota
+ Insecure
+)