Commit bb2257b5 authored by Mikio Hara's avatar Mikio Hara

ipv4: drop package name prefix from identifiers in docs for consistency

Change-Id: I00b3297b88142ddb3c0cd08391171ebb6e731550
Reviewed-on: https://go-review.googlesource.com/34751
Run-TryBot: Mikio Hara <mikioh.mikioh@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
parent 094f0373
...@@ -23,8 +23,8 @@ ...@@ -23,8 +23,8 @@
// net.UDPConn and net.IPConn which are created as network connections // net.UDPConn and net.IPConn which are created as network connections
// that use the IPv4 transport. When a single TCP connection carrying // that use the IPv4 transport. When a single TCP connection carrying
// a data flow of multiple packets needs to indicate the flow is // a data flow of multiple packets needs to indicate the flow is
// important, ipv4.Conn is used to set the type-of-service field on // important, Conn is used to set the type-of-service field on the
// the IPv4 header for each packet. // IPv4 header for each packet.
// //
// ln, err := net.Listen("tcp4", "0.0.0.0:1024") // ln, err := net.Listen("tcp4", "0.0.0.0:1024")
// if err != nil { // if err != nil {
...@@ -96,8 +96,8 @@ ...@@ -96,8 +96,8 @@
// The application might set per packet control message transmissions // The application might set per packet control message transmissions
// between the protocol stack within the kernel. When the application // between the protocol stack within the kernel. When the application
// needs a destination address on an incoming packet, // needs a destination address on an incoming packet,
// SetControlMessage of ipv4.PacketConn is used to enable control // SetControlMessage of PacketConn is used to enable control message
// message transmissions. // transmissions.
// //
// if err := p.SetControlMessage(ipv4.FlagDst, true); err != nil { // if err := p.SetControlMessage(ipv4.FlagDst, true); err != nil {
// // error handling // // error handling
......
...@@ -64,7 +64,7 @@ func slicePacket(b []byte) (h, p []byte, err error) { ...@@ -64,7 +64,7 @@ func slicePacket(b []byte) (h, p []byte, err error) {
// //
// The IPv4 header h must contain appropriate fields that include: // The IPv4 header h must contain appropriate fields that include:
// //
// Version = ipv4.Version // Version = <must be specified>
// Len = <must be specified> // Len = <must be specified>
// TOS = <must be specified> // TOS = <must be specified>
// TotalLen = <must be specified> // TotalLen = <must be specified>
......
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