Commit 8aa6e209 authored by David Symonds's avatar David Symonds

net: add import comments.

Change-Id: Ifab0fdaec1d810d268b7c19ad30f476802203b37
parent ccfcd82c
......@@ -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"
......
......@@ -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"
......
......@@ -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
......
......@@ -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"
......
......@@ -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
......
......@@ -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"
......
......@@ -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"
......
......@@ -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 (
......
......@@ -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 {
......
......@@ -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"
......
......@@ -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"
......@@ -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"
......@@ -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"
......
......@@ -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"
......
......@@ -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.
......
......@@ -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"
......
......@@ -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.
......
......@@ -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"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment