~ubuntu-branches/ubuntu/trusty/juju-core/trusty-proposed

« back to all changes in this revision

Viewing changes to src/code.google.com/p/go.net/ipv6/iana_test.go

  • Committer: Package Import Robot
  • Author(s): Robie Basak
  • Date: 2015-07-15 13:09:07 UTC
  • mfrom: (35.1.15 wily-proposed)
  • Revision ID: package-import@ubuntu.com-20150715130907-wqak1zpebzzdvy3q
Tags: 1.22.6-0ubuntu1~14.04.1
* No change backport to 14.04 (LP: #1469744). This results in the
  following packaging delta from the previous 1.20.11-0ubuntu0.14.04.1
  in trusty-updates:
  - distro-info added and libgo5 removed from Build-Depends.
  - Standards-Version bumped.
  - cloud-image-utils | cloud-utils added to juju-local Depends.
  - d/copyright updated.
  - dep8 tests updated.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// go run gentest.go
2
 
// GENERATED BY THE COMMAND ABOVE; DO NOT EDIT
3
 
 
4
 
package ipv6_test
5
 
 
6
 
// Differentiated Services Field Codepoints (DSCP), Updated: 2013-06-25
7
 
const (
8
 
        DiffServCS0        = 0x0  // CS0
9
 
        DiffServCS1        = 0x20 // CS1
10
 
        DiffServCS2        = 0x40 // CS2
11
 
        DiffServCS3        = 0x60 // CS3
12
 
        DiffServCS4        = 0x80 // CS4
13
 
        DiffServCS5        = 0xa0 // CS5
14
 
        DiffServCS6        = 0xc0 // CS6
15
 
        DiffServCS7        = 0xe0 // CS7
16
 
        DiffServAF11       = 0x28 // AF11
17
 
        DiffServAF12       = 0x30 // AF12
18
 
        DiffServAF13       = 0x38 // AF13
19
 
        DiffServAF21       = 0x48 // AF21
20
 
        DiffServAF22       = 0x50 // AF22
21
 
        DiffServAF23       = 0x58 // AF23
22
 
        DiffServAF31       = 0x68 // AF31
23
 
        DiffServAF32       = 0x70 // AF32
24
 
        DiffServAF33       = 0x78 // AF33
25
 
        DiffServAF41       = 0x88 // AF41
26
 
        DiffServAF42       = 0x90 // AF42
27
 
        DiffServAF43       = 0x98 // AF43
28
 
        DiffServEFPHB      = 0xb8 // EF PHB
29
 
        DiffServVOICEADMIT = 0xb0 // VOICE-ADMIT
30
 
)
31
 
 
32
 
// IPv4 TOS Byte and IPv6 Traffic Class Octet, Updated: 2001-09-06
33
 
const (
34
 
        NotECNTransport       = 0x0 // Not-ECT (Not ECN-Capable Transport)
35
 
        ECNTransport1         = 0x1 // ECT(1) (ECN-Capable Transport(1))
36
 
        ECNTransport0         = 0x2 // ECT(0) (ECN-Capable Transport(0))
37
 
        CongestionExperienced = 0x3 // CE (Congestion Experienced)
38
 
)