Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
N
net
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
net
Commits
8aa6e209
Commit
8aa6e209
authored
Dec 09, 2014
by
David Symonds
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
net: add import comments.
Change-Id: Ifab0fdaec1d810d268b7c19ad30f476802203b37
parent
ccfcd82c
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
18 additions
and
18 deletions
+18
-18
context.go
context/context.go
+1
-1
dict.go
dict/dict.go
+1
-1
atom.go
html/atom/atom.go
+1
-1
charset.go
html/charset/charset.go
+1
-1
doc.go
html/doc.go
+1
-1
message.go
icmp/message.go
+1
-1
idna.go
idna/idna.go
+1
-1
const.go
internal/iana/const.go
+1
-1
gen.go
internal/iana/gen.go
+1
-1
stack.go
internal/nettest/stack.go
+1
-1
doc.go
ipv4/doc.go
+1
-1
doc.go
ipv6/doc.go
+1
-1
listen.go
netutil/listen.go
+1
-1
proxy.go
proxy/proxy.go
+1
-1
list.go
publicsuffix/list.go
+1
-1
types.go
spdy/types.go
+1
-1
webdav.go
webdav/webdav.go
+1
-1
websocket.go
websocket/websocket.go
+1
-1
No files found.
context/context.go
View file @
8aa6e209
...
...
@@ -34,7 +34,7 @@
//
// See http://blog.golang.org/context for example code for a server that uses
// Contexts.
package
context
package
context
// import "golang.org/x/net/context"
import
(
"errors"
...
...
dict/dict.go
View file @
8aa6e209
...
...
@@ -4,7 +4,7 @@
// Package dict implements the Dictionary Server Protocol
// as defined in RFC 2229.
package
dict
package
dict
// import "golang.org/x/net/dict"
import
(
"net/textproto"
...
...
html/atom/atom.go
View file @
8aa6e209
...
...
@@ -15,7 +15,7 @@
// whether atom.H1 < atom.H2 may also change. The codes are not guaranteed to
// be dense. The only guarantees are that e.g. looking up "div" will yield
// atom.Div, calling atom.Div.String will return "div", and atom.Div != 0.
package
atom
package
atom
// import "golang.org/x/net/html/atom"
// Atom is an integer code for a string. The zero value maps to "".
type
Atom
uint32
...
...
html/charset/charset.go
View file @
8aa6e209
...
...
@@ -6,7 +6,7 @@
//
// The mapping from encoding labels to encodings is defined at
// http://encoding.spec.whatwg.org.
package
charset
package
charset
// import "golang.org/x/net/html/charset"
import
(
"bytes"
...
...
html/doc.go
View file @
8aa6e209
...
...
@@ -93,7 +93,7 @@ The relevant specifications include:
http://www.whatwg.org/specs/web-apps/current-work/multipage/syntax.html and
http://www.whatwg.org/specs/web-apps/current-work/multipage/tokenization.html
*/
package
html
package
html
// import "golang.org/x/net/html"
// The tokenization algorithm implemented by this package is not a line-by-line
// transliteration of the relatively verbose state-machine in the WHATWG
...
...
icmp/message.go
View file @
8aa6e209
...
...
@@ -7,7 +7,7 @@
// ICMPv4 and ICMPv6.
//
// ICMPv4 and ICMPv6 are defined in RFC 792 and RFC 4443.
package
icmp
package
icmp
// import "golang.org/x/net/icmp"
import
(
"errors"
...
...
idna/idna.go
View file @
8aa6e209
...
...
@@ -5,7 +5,7 @@
// Package idna implements IDNA2008 (Internationalized Domain Names for
// Applications), defined in RFC 5890, RFC 5891, RFC 5892, RFC 5893 and
// RFC 5894.
package
idna
package
idna
// import "golang.org/x/net/idna"
import
(
"strings"
...
...
internal/iana/const.go
View file @
8aa6e209
...
...
@@ -2,7 +2,7 @@
// GENERATED BY THE COMMAND ABOVE; DO NOT EDIT
// Package iana provides protocol number resources managed by the Internet Assigned Numbers Authority (IANA).
package
iana
package
iana
// import "golang.org/x/net/internal/iana"
// Differentiated Services Field Codepoints (DSCP), Updated: 2013-06-25
const
(
...
...
internal/iana/gen.go
View file @
8aa6e209
...
...
@@ -46,7 +46,7 @@ func main() {
fmt
.
Fprintf
(
&
bb
,
"// go generate gen.go
\n
"
)
fmt
.
Fprintf
(
&
bb
,
"// GENERATED BY THE COMMAND ABOVE; DO NOT EDIT
\n\n
"
)
fmt
.
Fprintf
(
&
bb
,
"// Package iana provides protocol number resources managed by the Internet Assigned Numbers Authority (IANA).
\n
"
)
fmt
.
Fprintf
(
&
bb
,
"package iana
\n\n
"
)
fmt
.
Fprintf
(
&
bb
,
`package iana // import "golang.org/x/net/internal/iana"\n\n`
)
for
_
,
r
:=
range
registries
{
resp
,
err
:=
http
.
Get
(
r
.
url
)
if
err
!=
nil
{
...
...
internal/nettest/stack.go
View file @
8aa6e209
...
...
@@ -3,7 +3,7 @@
// license that can be found in the LICENSE file.
// Package nettest provides utilities for IP testing.
package
nettest
package
nettest
// import "golang.org/x/net/internal/nettest"
import
"net"
...
...
ipv4/doc.go
View file @
8aa6e209
...
...
@@ -234,4 +234,4 @@
// IGMPv1 or IGMP2 and starts to listen to multicast traffic.
// In the fallback case, ExcludeSourceSpecificGroup and
// IncludeSourceSpecificGroup may return an error.
package
ipv4
package
ipv4
// import "golang.org/x/net/ipv4"
ipv6/doc.go
View file @
8aa6e209
...
...
@@ -231,4 +231,4 @@
// MLDv1 and starts to listen to multicast traffic.
// In the fallback case, ExcludeSourceSpecificGroup and
// IncludeSourceSpecificGroup may return an error.
package
ipv6
package
ipv6
// import "golang.org/x/net/ipv6"
netutil/listen.go
View file @
8aa6e209
...
...
@@ -4,7 +4,7 @@
// Package netutil provides network utility functions, complementing the more
// common ones in the net package.
package
netutil
package
netutil
// import "golang.org/x/net/netutil"
import
(
"net"
...
...
proxy/proxy.go
View file @
8aa6e209
...
...
@@ -4,7 +4,7 @@
// Package proxy provides support for a variety of protocols to proxy network
// data.
package
proxy
package
proxy
// import "golang.org/x/net/proxy"
import
(
"errors"
...
...
publicsuffix/list.go
View file @
8aa6e209
...
...
@@ -5,7 +5,7 @@
// Package publicsuffix provides a public suffix list based on data from
// http://publicsuffix.org/. A public suffix is one under which Internet users
// can directly register names.
package
publicsuffix
package
publicsuffix
// import "golang.org/x/net/publicsuffix"
// TODO: specify case sensitivity and leading/trailing dot behavior for
// func PublicSuffix and func EffectiveTLDPlusOne.
...
...
spdy/types.go
View file @
8aa6e209
...
...
@@ -4,7 +4,7 @@
// Package spdy implements the SPDY protocol (currently SPDY/3), described in
// http://www.chromium.org/spdy/spdy-protocol/spdy-protocol-draft3.
package
spdy
package
spdy
// import "golang.org/x/net/spdy"
import
(
"bytes"
...
...
webdav/webdav.go
View file @
8aa6e209
...
...
@@ -3,7 +3,7 @@
// license that can be found in the LICENSE file.
// Package webdav etc etc TODO.
package
webdav
package
webdav
// import "golang.org/x/net/webdav"
// TODO: ETag, properties.
...
...
websocket/websocket.go
View file @
8aa6e209
...
...
@@ -4,7 +4,7 @@
// Package websocket implements a client and server for the WebSocket protocol
// as specified in RFC 6455.
package
websocket
package
websocket
// import "golang.org/x/net/websocket"
import
(
"bufio"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment