Browse Source

ipv4: don't use internal/iana's constants in documentation

Change-Id: I55d6ad683b8021722fec8b42b2a8aa0a1883cb96
Reviewed-on: https://go-review.googlesource.com/15052
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Mikio Hara 10 years ago
parent
commit
dc692bc613
1 changed files with 2 additions and 2 deletions
  1. 2 2
      ipv4/doc.go

+ 2 - 2
ipv4/doc.go

@@ -42,7 +42,7 @@
 // The outgoing packets will be labeled DiffServ assured forwarding
 // The outgoing packets will be labeled DiffServ assured forwarding
 // class 1 low drop precedence, known as AF11 packets.
 // class 1 low drop precedence, known as AF11 packets.
 //
 //
-//			if err := ipv4.NewConn(c).SetTOS(DiffServAF11); err != nil {
+//			if err := ipv4.NewConn(c).SetTOS(0x28); err != nil {
 //				// error handling
 //				// error handling
 //			}
 //			}
 //			if _, err := c.Write(data); err != nil {
 //			if _, err := c.Write(data); err != nil {
@@ -124,7 +124,7 @@
 //
 //
 // The application can also send both unicast and multicast packets.
 // The application can also send both unicast and multicast packets.
 //
 //
-//		p.SetTOS(DiffServCS0)
+//		p.SetTOS(0x0)
 //		p.SetTTL(16)
 //		p.SetTTL(16)
 //		if _, err := p.WriteTo(data, nil, src); err != nil {
 //		if _, err := p.WriteTo(data, nil, src); err != nil {
 //			// error handling
 //			// error handling