ires 0.1.3 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +32 -45
- data/ext/Gopkg.lock +31 -1
- data/ext/ires/image.go +227 -0
- data/ext/ires/ires.go +47 -59
- data/ext/ires/uri.go +143 -0
- data/ext/main.go +18 -9
- data/ext/vendor/github.com/PuerkitoBio/purell/LICENSE +12 -0
- data/ext/vendor/github.com/PuerkitoBio/purell/README.md +187 -0
- data/ext/vendor/github.com/PuerkitoBio/purell/bench_test.go +57 -0
- data/ext/vendor/github.com/PuerkitoBio/purell/benchmarks/v0.1.0 +9 -0
- data/ext/vendor/github.com/PuerkitoBio/purell/example_test.go +35 -0
- data/ext/vendor/github.com/PuerkitoBio/purell/purell.go +379 -0
- data/ext/vendor/github.com/PuerkitoBio/purell/purell_test.go +768 -0
- data/ext/vendor/github.com/PuerkitoBio/purell/urlnorm_test.go +53 -0
- data/ext/vendor/github.com/PuerkitoBio/urlesc/LICENSE +27 -0
- data/ext/vendor/github.com/PuerkitoBio/urlesc/README.md +16 -0
- data/ext/vendor/github.com/PuerkitoBio/urlesc/urlesc.go +180 -0
- data/ext/vendor/github.com/PuerkitoBio/urlesc/urlesc_test.go +641 -0
- data/ext/vendor/github.com/{satori/go.uuid → goware/urlx}/LICENSE +3 -1
- data/ext/vendor/github.com/goware/urlx/README.md +172 -0
- data/ext/vendor/github.com/goware/urlx/urlx.go +196 -0
- data/ext/vendor/github.com/goware/urlx/urlx_test.go +232 -0
- data/ext/vendor/golang.org/x/net/AUTHORS +3 -0
- data/ext/vendor/golang.org/x/net/CONTRIBUTING.md +31 -0
- data/ext/vendor/golang.org/x/net/CONTRIBUTORS +3 -0
- data/ext/vendor/golang.org/x/net/LICENSE +27 -0
- data/ext/vendor/golang.org/x/net/PATENTS +22 -0
- data/ext/vendor/golang.org/x/net/README.md +16 -0
- data/ext/vendor/golang.org/x/net/bpf/asm.go +41 -0
- data/ext/vendor/golang.org/x/net/bpf/constants.go +218 -0
- data/ext/vendor/golang.org/x/net/bpf/doc.go +82 -0
- data/ext/vendor/golang.org/x/net/bpf/instructions.go +704 -0
- data/ext/vendor/golang.org/x/net/bpf/instructions_test.go +525 -0
- data/ext/vendor/golang.org/x/net/bpf/setter.go +10 -0
- data/ext/vendor/golang.org/x/net/bpf/testdata/all_instructions.bpf +1 -0
- data/ext/vendor/golang.org/x/net/bpf/testdata/all_instructions.txt +79 -0
- data/ext/vendor/golang.org/x/net/bpf/vm.go +140 -0
- data/ext/vendor/golang.org/x/net/bpf/vm_aluop_test.go +512 -0
- data/ext/vendor/golang.org/x/net/bpf/vm_bpf_test.go +192 -0
- data/ext/vendor/golang.org/x/net/bpf/vm_extension_test.go +49 -0
- data/ext/vendor/golang.org/x/net/bpf/vm_instructions.go +174 -0
- data/ext/vendor/golang.org/x/net/bpf/vm_jump_test.go +380 -0
- data/ext/vendor/golang.org/x/net/bpf/vm_load_test.go +246 -0
- data/ext/vendor/golang.org/x/net/bpf/vm_ret_test.go +115 -0
- data/ext/vendor/golang.org/x/net/bpf/vm_scratch_test.go +247 -0
- data/ext/vendor/golang.org/x/net/bpf/vm_test.go +144 -0
- data/ext/vendor/golang.org/x/net/codereview.cfg +1 -0
- data/ext/vendor/golang.org/x/net/context/context.go +54 -0
- data/ext/vendor/golang.org/x/net/context/context_test.go +583 -0
- data/ext/vendor/golang.org/x/net/context/ctxhttp/ctxhttp.go +74 -0
- data/ext/vendor/golang.org/x/net/context/ctxhttp/ctxhttp_17_test.go +29 -0
- data/ext/vendor/golang.org/x/net/context/ctxhttp/ctxhttp_pre17.go +147 -0
- data/ext/vendor/golang.org/x/net/context/ctxhttp/ctxhttp_pre17_test.go +79 -0
- data/ext/vendor/golang.org/x/net/context/ctxhttp/ctxhttp_test.go +105 -0
- data/ext/vendor/golang.org/x/net/context/go17.go +72 -0
- data/ext/vendor/golang.org/x/net/context/go19.go +20 -0
- data/ext/vendor/golang.org/x/net/context/pre_go17.go +300 -0
- data/ext/vendor/golang.org/x/net/context/pre_go19.go +109 -0
- data/ext/vendor/golang.org/x/net/context/withtimeout_test.go +31 -0
- data/ext/vendor/golang.org/x/net/dict/dict.go +210 -0
- data/ext/vendor/golang.org/x/net/dns/dnsmessage/example_test.go +132 -0
- data/ext/vendor/golang.org/x/net/dns/dnsmessage/message.go +1997 -0
- data/ext/vendor/golang.org/x/net/dns/dnsmessage/message_test.go +1116 -0
- data/ext/vendor/golang.org/x/net/html/atom/atom.go +78 -0
- data/ext/vendor/golang.org/x/net/html/atom/atom_test.go +109 -0
- data/ext/vendor/golang.org/x/net/html/atom/gen.go +709 -0
- data/ext/vendor/golang.org/x/net/html/atom/table.go +777 -0
- data/ext/vendor/golang.org/x/net/html/atom/table_test.go +373 -0
- data/ext/vendor/golang.org/x/net/html/charset/charset.go +257 -0
- data/ext/vendor/golang.org/x/net/html/charset/charset_test.go +237 -0
- data/ext/vendor/golang.org/x/net/html/charset/testdata/HTTP-charset.html +48 -0
- data/ext/vendor/golang.org/x/net/html/charset/testdata/HTTP-vs-UTF-8-BOM.html +48 -0
- data/ext/vendor/golang.org/x/net/html/charset/testdata/HTTP-vs-meta-charset.html +49 -0
- data/ext/vendor/golang.org/x/net/html/charset/testdata/HTTP-vs-meta-content.html +49 -0
- data/ext/vendor/golang.org/x/net/html/charset/testdata/No-encoding-declaration.html +47 -0
- data/ext/vendor/golang.org/x/net/html/charset/testdata/README +9 -0
- data/ext/vendor/golang.org/x/net/html/charset/testdata/UTF-16BE-BOM.html +0 -0
- data/ext/vendor/golang.org/x/net/html/charset/testdata/UTF-16LE-BOM.html +0 -0
- data/ext/vendor/golang.org/x/net/html/charset/testdata/UTF-8-BOM-vs-meta-charset.html +49 -0
- data/ext/vendor/golang.org/x/net/html/charset/testdata/UTF-8-BOM-vs-meta-content.html +48 -0
- data/ext/vendor/golang.org/x/net/html/charset/testdata/meta-charset-attribute.html +48 -0
- data/ext/vendor/golang.org/x/net/html/charset/testdata/meta-content-attribute.html +48 -0
- data/ext/vendor/golang.org/x/net/html/const.go +104 -0
- data/ext/vendor/golang.org/x/net/html/doc.go +106 -0
- data/ext/vendor/golang.org/x/net/html/doctype.go +156 -0
- data/ext/vendor/golang.org/x/net/html/entity.go +2253 -0
- data/ext/vendor/golang.org/x/net/html/entity_test.go +29 -0
- data/ext/vendor/golang.org/x/net/html/escape.go +258 -0
- data/ext/vendor/golang.org/x/net/html/escape_test.go +97 -0
- data/ext/vendor/golang.org/x/net/html/example_test.go +40 -0
- data/ext/vendor/golang.org/x/net/html/foreign.go +226 -0
- data/ext/vendor/golang.org/x/net/html/node.go +193 -0
- data/ext/vendor/golang.org/x/net/html/node_test.go +146 -0
- data/ext/vendor/golang.org/x/net/html/parse.go +2094 -0
- data/ext/vendor/golang.org/x/net/html/parse_test.go +388 -0
- data/ext/vendor/golang.org/x/net/html/render.go +271 -0
- data/ext/vendor/golang.org/x/net/html/render_test.go +156 -0
- data/ext/vendor/golang.org/x/net/html/testdata/go1.html +2237 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/README +28 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/adoption01.dat +194 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/adoption02.dat +31 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/comments01.dat +135 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/doctype01.dat +370 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/entities01.dat +603 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/entities02.dat +249 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/html5test-com.dat +246 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/inbody01.dat +43 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/isindex.dat +40 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/pending-spec-changes-plain-text-unsafe.dat +0 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/pending-spec-changes.dat +52 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/plain-text-unsafe.dat +0 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/scriptdata01.dat +308 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/scripted/adoption01.dat +15 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/scripted/webkit01.dat +28 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tables01.dat +212 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests1.dat +1952 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests10.dat +799 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests11.dat +482 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests12.dat +62 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests14.dat +74 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests15.dat +208 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests16.dat +2299 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests17.dat +153 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests18.dat +269 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests19.dat +1237 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests2.dat +763 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests20.dat +455 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests21.dat +221 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests22.dat +157 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests23.dat +155 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests24.dat +79 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests25.dat +219 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests26.dat +313 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests3.dat +305 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests4.dat +59 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests5.dat +191 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests6.dat +663 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests7.dat +390 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests8.dat +148 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests9.dat +457 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tests_innerHTML_1.dat +741 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/tricky01.dat +261 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/webkit01.dat +610 -0
- data/ext/vendor/golang.org/x/net/html/testdata/webkit/webkit02.dat +159 -0
- data/ext/vendor/golang.org/x/net/html/token.go +1219 -0
- data/ext/vendor/golang.org/x/net/html/token_test.go +748 -0
- data/ext/vendor/golang.org/x/net/http2/Dockerfile +51 -0
- data/ext/vendor/golang.org/x/net/http2/Makefile +3 -0
- data/ext/vendor/golang.org/x/net/http2/README +20 -0
- data/ext/vendor/golang.org/x/net/http2/ciphers.go +641 -0
- data/ext/vendor/golang.org/x/net/http2/ciphers_test.go +309 -0
- data/ext/vendor/golang.org/x/net/http2/client_conn_pool.go +256 -0
- data/ext/vendor/golang.org/x/net/http2/configure_transport.go +80 -0
- data/ext/vendor/golang.org/x/net/http2/databuffer.go +146 -0
- data/ext/vendor/golang.org/x/net/http2/databuffer_test.go +157 -0
- data/ext/vendor/golang.org/x/net/http2/errors.go +133 -0
- data/ext/vendor/golang.org/x/net/http2/errors_test.go +24 -0
- data/ext/vendor/golang.org/x/net/http2/flow.go +50 -0
- data/ext/vendor/golang.org/x/net/http2/flow_test.go +53 -0
- data/ext/vendor/golang.org/x/net/http2/frame.go +1579 -0
- data/ext/vendor/golang.org/x/net/http2/frame_test.go +1191 -0
- data/ext/vendor/golang.org/x/net/http2/go16.go +16 -0
- data/ext/vendor/golang.org/x/net/http2/go17.go +106 -0
- data/ext/vendor/golang.org/x/net/http2/go17_not18.go +36 -0
- data/ext/vendor/golang.org/x/net/http2/go18.go +56 -0
- data/ext/vendor/golang.org/x/net/http2/go18_test.go +79 -0
- data/ext/vendor/golang.org/x/net/http2/go19.go +16 -0
- data/ext/vendor/golang.org/x/net/http2/go19_test.go +60 -0
- data/ext/vendor/golang.org/x/net/http2/gotrack.go +170 -0
- data/ext/vendor/golang.org/x/net/http2/gotrack_test.go +33 -0
- data/ext/vendor/golang.org/x/net/http2/h2demo/Makefile +8 -0
- data/ext/vendor/golang.org/x/net/http2/h2demo/README +16 -0
- data/ext/vendor/golang.org/x/net/http2/h2demo/h2demo.go +538 -0
- data/ext/vendor/golang.org/x/net/http2/h2demo/launch.go +302 -0
- data/ext/vendor/golang.org/x/net/http2/h2demo/rootCA.key +27 -0
- data/ext/vendor/golang.org/x/net/http2/h2demo/rootCA.pem +26 -0
- data/ext/vendor/golang.org/x/net/http2/h2demo/rootCA.srl +1 -0
- data/ext/vendor/golang.org/x/net/http2/h2demo/server.crt +20 -0
- data/ext/vendor/golang.org/x/net/http2/h2demo/server.key +27 -0
- data/ext/vendor/golang.org/x/net/http2/h2demo/tmpl.go +1991 -0
- data/ext/vendor/golang.org/x/net/http2/h2i/README.md +97 -0
- data/ext/vendor/golang.org/x/net/http2/h2i/h2i.go +522 -0
- data/ext/vendor/golang.org/x/net/http2/headermap.go +78 -0
- data/ext/vendor/golang.org/x/net/http2/hpack/encode.go +240 -0
- data/ext/vendor/golang.org/x/net/http2/hpack/encode_test.go +386 -0
- data/ext/vendor/golang.org/x/net/http2/hpack/hpack.go +490 -0
- data/ext/vendor/golang.org/x/net/http2/hpack/hpack_test.go +722 -0
- data/ext/vendor/golang.org/x/net/http2/hpack/huffman.go +212 -0
- data/ext/vendor/golang.org/x/net/http2/hpack/tables.go +479 -0
- data/ext/vendor/golang.org/x/net/http2/hpack/tables_test.go +214 -0
- data/ext/vendor/golang.org/x/net/http2/http2.go +391 -0
- data/ext/vendor/golang.org/x/net/http2/http2_test.go +199 -0
- data/ext/vendor/golang.org/x/net/http2/not_go16.go +21 -0
- data/ext/vendor/golang.org/x/net/http2/not_go17.go +87 -0
- data/ext/vendor/golang.org/x/net/http2/not_go18.go +29 -0
- data/ext/vendor/golang.org/x/net/http2/not_go19.go +16 -0
- data/ext/vendor/golang.org/x/net/http2/pipe.go +163 -0
- data/ext/vendor/golang.org/x/net/http2/pipe_test.go +130 -0
- data/ext/vendor/golang.org/x/net/http2/server.go +2857 -0
- data/ext/vendor/golang.org/x/net/http2/server_push_test.go +521 -0
- data/ext/vendor/golang.org/x/net/http2/server_test.go +3721 -0
- data/ext/vendor/golang.org/x/net/http2/testdata/draft-ietf-httpbis-http2.xml +5021 -0
- data/ext/vendor/golang.org/x/net/http2/transport.go +2285 -0
- data/ext/vendor/golang.org/x/net/http2/transport_test.go +3714 -0
- data/ext/vendor/golang.org/x/net/http2/write.go +370 -0
- data/ext/vendor/golang.org/x/net/http2/writesched.go +242 -0
- data/ext/vendor/golang.org/x/net/http2/writesched_priority.go +452 -0
- data/ext/vendor/golang.org/x/net/http2/writesched_priority_test.go +541 -0
- data/ext/vendor/golang.org/x/net/http2/writesched_random.go +72 -0
- data/ext/vendor/golang.org/x/net/http2/writesched_random_test.go +44 -0
- data/ext/vendor/golang.org/x/net/http2/writesched_test.go +125 -0
- data/ext/vendor/golang.org/x/net/http2/z_spec_test.go +356 -0
- data/ext/vendor/golang.org/x/net/icmp/dstunreach.go +41 -0
- data/ext/vendor/golang.org/x/net/icmp/echo.go +45 -0
- data/ext/vendor/golang.org/x/net/icmp/endpoint.go +113 -0
- data/ext/vendor/golang.org/x/net/icmp/example_test.go +63 -0
- data/ext/vendor/golang.org/x/net/icmp/extension.go +89 -0
- data/ext/vendor/golang.org/x/net/icmp/extension_test.go +259 -0
- data/ext/vendor/golang.org/x/net/icmp/helper_posix.go +75 -0
- data/ext/vendor/golang.org/x/net/icmp/interface.go +236 -0
- data/ext/vendor/golang.org/x/net/icmp/ipv4.go +61 -0
- data/ext/vendor/golang.org/x/net/icmp/ipv4_test.go +83 -0
- data/ext/vendor/golang.org/x/net/icmp/ipv6.go +23 -0
- data/ext/vendor/golang.org/x/net/icmp/listen_posix.go +100 -0
- data/ext/vendor/golang.org/x/net/icmp/listen_stub.go +33 -0
- data/ext/vendor/golang.org/x/net/icmp/message.go +152 -0
- data/ext/vendor/golang.org/x/net/icmp/message_test.go +134 -0
- data/ext/vendor/golang.org/x/net/icmp/messagebody.go +41 -0
- data/ext/vendor/golang.org/x/net/icmp/mpls.go +77 -0
- data/ext/vendor/golang.org/x/net/icmp/multipart.go +109 -0
- data/ext/vendor/golang.org/x/net/icmp/multipart_test.go +442 -0
- data/ext/vendor/golang.org/x/net/icmp/packettoobig.go +43 -0
- data/ext/vendor/golang.org/x/net/icmp/paramprob.go +63 -0
- data/ext/vendor/golang.org/x/net/icmp/ping_test.go +200 -0
- data/ext/vendor/golang.org/x/net/icmp/sys_freebsd.go +11 -0
- data/ext/vendor/golang.org/x/net/icmp/timeexceeded.go +39 -0
- data/ext/vendor/golang.org/x/net/idna/example_test.go +70 -0
- data/ext/vendor/golang.org/x/net/idna/idna.go +680 -0
- data/ext/vendor/golang.org/x/net/idna/idna_test.go +108 -0
- data/ext/vendor/golang.org/x/net/idna/punycode.go +203 -0
- data/ext/vendor/golang.org/x/net/idna/punycode_test.go +198 -0
- data/ext/vendor/golang.org/x/net/idna/tables.go +4477 -0
- data/ext/vendor/golang.org/x/net/idna/trie.go +72 -0
- data/ext/vendor/golang.org/x/net/idna/trieval.go +114 -0
- data/ext/vendor/golang.org/x/net/internal/iana/const.go +180 -0
- data/ext/vendor/golang.org/x/net/internal/iana/gen.go +293 -0
- data/ext/vendor/golang.org/x/net/internal/nettest/helper_bsd.go +53 -0
- data/ext/vendor/golang.org/x/net/internal/nettest/helper_nobsd.go +15 -0
- data/ext/vendor/golang.org/x/net/internal/nettest/helper_posix.go +31 -0
- data/ext/vendor/golang.org/x/net/internal/nettest/helper_stub.go +32 -0
- data/ext/vendor/golang.org/x/net/internal/nettest/helper_unix.go +29 -0
- data/ext/vendor/golang.org/x/net/internal/nettest/helper_windows.go +42 -0
- data/ext/vendor/golang.org/x/net/internal/nettest/interface.go +94 -0
- data/ext/vendor/golang.org/x/net/internal/nettest/rlimit.go +11 -0
- data/ext/vendor/golang.org/x/net/internal/nettest/stack.go +147 -0
- data/ext/vendor/golang.org/x/net/internal/socket/cmsghdr.go +11 -0
- data/ext/vendor/golang.org/x/net/internal/socket/cmsghdr_bsd.go +13 -0
- data/ext/vendor/golang.org/x/net/internal/socket/cmsghdr_linux_32bit.go +14 -0
- data/ext/vendor/golang.org/x/net/internal/socket/cmsghdr_linux_64bit.go +14 -0
- data/ext/vendor/golang.org/x/net/internal/socket/cmsghdr_solaris_64bit.go +14 -0
- data/ext/vendor/golang.org/x/net/internal/socket/cmsghdr_stub.go +17 -0
- data/ext/vendor/golang.org/x/net/internal/socket/defs_darwin.go +44 -0
- data/ext/vendor/golang.org/x/net/internal/socket/defs_dragonfly.go +44 -0
- data/ext/vendor/golang.org/x/net/internal/socket/defs_freebsd.go +44 -0
- data/ext/vendor/golang.org/x/net/internal/socket/defs_linux.go +49 -0
- data/ext/vendor/golang.org/x/net/internal/socket/defs_netbsd.go +47 -0
- data/ext/vendor/golang.org/x/net/internal/socket/defs_openbsd.go +44 -0
- data/ext/vendor/golang.org/x/net/internal/socket/defs_solaris.go +44 -0
- data/ext/vendor/golang.org/x/net/internal/socket/error_unix.go +31 -0
- data/ext/vendor/golang.org/x/net/internal/socket/error_windows.go +26 -0
- data/ext/vendor/golang.org/x/net/internal/socket/iovec_32bit.go +19 -0
- data/ext/vendor/golang.org/x/net/internal/socket/iovec_64bit.go +19 -0
- data/ext/vendor/golang.org/x/net/internal/socket/iovec_solaris_64bit.go +19 -0
- data/ext/vendor/golang.org/x/net/internal/socket/iovec_stub.go +11 -0
- data/ext/vendor/golang.org/x/net/internal/socket/mmsghdr_stub.go +21 -0
- data/ext/vendor/golang.org/x/net/internal/socket/mmsghdr_unix.go +42 -0
- data/ext/vendor/golang.org/x/net/internal/socket/msghdr_bsd.go +39 -0
- data/ext/vendor/golang.org/x/net/internal/socket/msghdr_bsdvar.go +16 -0
- data/ext/vendor/golang.org/x/net/internal/socket/msghdr_linux.go +36 -0
- data/ext/vendor/golang.org/x/net/internal/socket/msghdr_linux_32bit.go +24 -0
- data/ext/vendor/golang.org/x/net/internal/socket/msghdr_linux_64bit.go +24 -0
- data/ext/vendor/golang.org/x/net/internal/socket/msghdr_openbsd.go +14 -0
- data/ext/vendor/golang.org/x/net/internal/socket/msghdr_solaris_64bit.go +36 -0
- data/ext/vendor/golang.org/x/net/internal/socket/msghdr_stub.go +14 -0
- data/ext/vendor/golang.org/x/net/internal/socket/rawconn.go +66 -0
- data/ext/vendor/golang.org/x/net/internal/socket/rawconn_mmsg.go +74 -0
- data/ext/vendor/golang.org/x/net/internal/socket/rawconn_msg.go +77 -0
- data/ext/vendor/golang.org/x/net/internal/socket/rawconn_nommsg.go +18 -0
- data/ext/vendor/golang.org/x/net/internal/socket/rawconn_nomsg.go +18 -0
- data/ext/vendor/golang.org/x/net/internal/socket/rawconn_stub.go +25 -0
- data/ext/vendor/golang.org/x/net/internal/socket/reflect.go +62 -0
- data/ext/vendor/golang.org/x/net/internal/socket/socket.go +285 -0
- data/ext/vendor/golang.org/x/net/internal/socket/socket_go1_9_test.go +259 -0
- data/ext/vendor/golang.org/x/net/internal/socket/socket_test.go +46 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys.go +33 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_bsd.go +17 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_bsdvar.go +14 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_darwin.go +7 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_dragonfly.go +7 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_linux.go +27 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_linux_386.go +55 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_linux_386.s +11 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_linux_amd64.go +10 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_linux_arm.go +10 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_linux_arm64.go +10 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_linux_mips.go +10 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_linux_mips64.go +10 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_linux_mips64le.go +10 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_linux_mipsle.go +10 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_linux_ppc64.go +10 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_linux_ppc64le.go +10 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_linux_s390x.go +55 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_linux_s390x.s +11 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_netbsd.go +25 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_posix.go +168 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_solaris.go +71 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_solaris_amd64.s +11 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_stub.go +64 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_unix.go +33 -0
- data/ext/vendor/golang.org/x/net/internal/socket/sys_windows.go +70 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_darwin_386.go +59 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_darwin_amd64.go +61 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_darwin_arm.go +59 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_dragonfly_amd64.go +61 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_freebsd_386.go +59 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_freebsd_amd64.go +61 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_freebsd_arm.go +59 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_linux_386.go +63 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_linux_amd64.go +66 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_linux_arm.go +63 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_linux_arm64.go +66 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_linux_mips.go +63 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_linux_mips64.go +66 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_linux_mips64le.go +66 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_linux_mipsle.go +63 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_linux_ppc64.go +66 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_linux_ppc64le.go +66 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_linux_s390x.go +66 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_netbsd_386.go +65 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_netbsd_amd64.go +68 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_netbsd_arm.go +59 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_openbsd_386.go +59 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_openbsd_amd64.go +61 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_openbsd_arm.go +59 -0
- data/ext/vendor/golang.org/x/net/internal/socket/zsys_solaris_amd64.go +60 -0
- data/ext/vendor/golang.org/x/net/internal/timeseries/timeseries.go +525 -0
- data/ext/vendor/golang.org/x/net/internal/timeseries/timeseries_test.go +170 -0
- data/ext/vendor/golang.org/x/net/ipv4/batch.go +191 -0
- data/ext/vendor/golang.org/x/net/ipv4/bpf_test.go +93 -0
- data/ext/vendor/golang.org/x/net/ipv4/control.go +144 -0
- data/ext/vendor/golang.org/x/net/ipv4/control_bsd.go +40 -0
- data/ext/vendor/golang.org/x/net/ipv4/control_pktinfo.go +39 -0
- data/ext/vendor/golang.org/x/net/ipv4/control_stub.go +13 -0
- data/ext/vendor/golang.org/x/net/ipv4/control_test.go +21 -0
- data/ext/vendor/golang.org/x/net/ipv4/control_unix.go +73 -0
- data/ext/vendor/golang.org/x/net/ipv4/control_windows.go +16 -0
- data/ext/vendor/golang.org/x/net/ipv4/defs_darwin.go +77 -0
- data/ext/vendor/golang.org/x/net/ipv4/defs_dragonfly.go +38 -0
- data/ext/vendor/golang.org/x/net/ipv4/defs_freebsd.go +75 -0
- data/ext/vendor/golang.org/x/net/ipv4/defs_linux.go +122 -0
- data/ext/vendor/golang.org/x/net/ipv4/defs_netbsd.go +37 -0
- data/ext/vendor/golang.org/x/net/ipv4/defs_openbsd.go +37 -0
- data/ext/vendor/golang.org/x/net/ipv4/defs_solaris.go +84 -0
- data/ext/vendor/golang.org/x/net/ipv4/dgramopt.go +265 -0
- data/ext/vendor/golang.org/x/net/ipv4/doc.go +244 -0
- data/ext/vendor/golang.org/x/net/ipv4/endpoint.go +187 -0
- data/ext/vendor/golang.org/x/net/ipv4/example_test.go +224 -0
- data/ext/vendor/golang.org/x/net/ipv4/gen.go +199 -0
- data/ext/vendor/golang.org/x/net/ipv4/genericopt.go +57 -0
- data/ext/vendor/golang.org/x/net/ipv4/header.go +159 -0
- data/ext/vendor/golang.org/x/net/ipv4/header_test.go +228 -0
- data/ext/vendor/golang.org/x/net/ipv4/helper.go +63 -0
- data/ext/vendor/golang.org/x/net/ipv4/iana.go +34 -0
- data/ext/vendor/golang.org/x/net/ipv4/icmp.go +57 -0
- data/ext/vendor/golang.org/x/net/ipv4/icmp_linux.go +25 -0
- data/ext/vendor/golang.org/x/net/ipv4/icmp_stub.go +25 -0
- data/ext/vendor/golang.org/x/net/ipv4/icmp_test.go +95 -0
- data/ext/vendor/golang.org/x/net/ipv4/multicast_test.go +334 -0
- data/ext/vendor/golang.org/x/net/ipv4/multicastlistener_test.go +265 -0
- data/ext/vendor/golang.org/x/net/ipv4/multicastsockopt_test.go +195 -0
- data/ext/vendor/golang.org/x/net/ipv4/packet.go +69 -0
- data/ext/vendor/golang.org/x/net/ipv4/packet_go1_8.go +56 -0
- data/ext/vendor/golang.org/x/net/ipv4/packet_go1_9.go +67 -0
- data/ext/vendor/golang.org/x/net/ipv4/payload.go +23 -0
- data/ext/vendor/golang.org/x/net/ipv4/payload_cmsg.go +36 -0
- data/ext/vendor/golang.org/x/net/ipv4/payload_cmsg_go1_8.go +59 -0
- data/ext/vendor/golang.org/x/net/ipv4/payload_cmsg_go1_9.go +67 -0
- data/ext/vendor/golang.org/x/net/ipv4/payload_nocmsg.go +42 -0
- data/ext/vendor/golang.org/x/net/ipv4/readwrite_go1_8_test.go +248 -0
- data/ext/vendor/golang.org/x/net/ipv4/readwrite_go1_9_test.go +388 -0
- data/ext/vendor/golang.org/x/net/ipv4/readwrite_test.go +140 -0
- data/ext/vendor/golang.org/x/net/ipv4/sockopt.go +44 -0
- data/ext/vendor/golang.org/x/net/ipv4/sockopt_posix.go +71 -0
- data/ext/vendor/golang.org/x/net/ipv4/sockopt_stub.go +42 -0
- data/ext/vendor/golang.org/x/net/ipv4/sys_asmreq.go +119 -0
- data/ext/vendor/golang.org/x/net/ipv4/sys_asmreq_stub.go +25 -0
- data/ext/vendor/golang.org/x/net/ipv4/sys_asmreqn.go +42 -0
- data/ext/vendor/golang.org/x/net/ipv4/sys_asmreqn_stub.go +21 -0
- data/ext/vendor/golang.org/x/net/ipv4/sys_bpf.go +23 -0
- data/ext/vendor/golang.org/x/net/ipv4/sys_bpf_stub.go +16 -0
- data/ext/vendor/golang.org/x/net/ipv4/sys_bsd.go +37 -0
- data/ext/vendor/golang.org/x/net/ipv4/sys_darwin.go +93 -0
- data/ext/vendor/golang.org/x/net/ipv4/sys_dragonfly.go +35 -0
- data/ext/vendor/golang.org/x/net/ipv4/sys_freebsd.go +76 -0
- data/ext/vendor/golang.org/x/net/ipv4/sys_linux.go +59 -0
- data/ext/vendor/golang.org/x/net/ipv4/sys_solaris.go +57 -0
- data/ext/vendor/golang.org/x/net/ipv4/sys_ssmreq.go +54 -0
- data/ext/vendor/golang.org/x/net/ipv4/sys_ssmreq_stub.go +21 -0
- data/ext/vendor/golang.org/x/net/ipv4/sys_stub.go +13 -0
- data/ext/vendor/golang.org/x/net/ipv4/sys_windows.go +67 -0
- data/ext/vendor/golang.org/x/net/ipv4/unicast_test.go +247 -0
- data/ext/vendor/golang.org/x/net/ipv4/unicastsockopt_test.go +148 -0
- data/ext/vendor/golang.org/x/net/ipv4/zsys_darwin.go +99 -0
- data/ext/vendor/golang.org/x/net/ipv4/zsys_dragonfly.go +31 -0
- data/ext/vendor/golang.org/x/net/ipv4/zsys_freebsd_386.go +93 -0
- data/ext/vendor/golang.org/x/net/ipv4/zsys_freebsd_amd64.go +95 -0
- data/ext/vendor/golang.org/x/net/ipv4/zsys_freebsd_arm.go +95 -0
- data/ext/vendor/golang.org/x/net/ipv4/zsys_linux_386.go +148 -0
- data/ext/vendor/golang.org/x/net/ipv4/zsys_linux_amd64.go +150 -0
- data/ext/vendor/golang.org/x/net/ipv4/zsys_linux_arm.go +148 -0
- data/ext/vendor/golang.org/x/net/ipv4/zsys_linux_arm64.go +150 -0
- data/ext/vendor/golang.org/x/net/ipv4/zsys_linux_mips.go +148 -0
- data/ext/vendor/golang.org/x/net/ipv4/zsys_linux_mips64.go +150 -0
- data/ext/vendor/golang.org/x/net/ipv4/zsys_linux_mips64le.go +150 -0
- data/ext/vendor/golang.org/x/net/ipv4/zsys_linux_mipsle.go +148 -0
- data/ext/vendor/golang.org/x/net/ipv4/zsys_linux_ppc.go +148 -0
- data/ext/vendor/golang.org/x/net/ipv4/zsys_linux_ppc64.go +150 -0
- data/ext/vendor/golang.org/x/net/ipv4/zsys_linux_ppc64le.go +150 -0
- data/ext/vendor/golang.org/x/net/ipv4/zsys_linux_s390x.go +150 -0
- data/ext/vendor/golang.org/x/net/ipv4/zsys_netbsd.go +30 -0
- data/ext/vendor/golang.org/x/net/ipv4/zsys_openbsd.go +30 -0
- data/ext/vendor/golang.org/x/net/ipv4/zsys_solaris.go +100 -0
- data/ext/vendor/golang.org/x/net/ipv6/batch.go +119 -0
- data/ext/vendor/golang.org/x/net/ipv6/bpf_test.go +96 -0
- data/ext/vendor/golang.org/x/net/ipv6/control.go +187 -0
- data/ext/vendor/golang.org/x/net/ipv6/control_rfc2292_unix.go +48 -0
- data/ext/vendor/golang.org/x/net/ipv6/control_rfc3542_unix.go +94 -0
- data/ext/vendor/golang.org/x/net/ipv6/control_stub.go +13 -0
- data/ext/vendor/golang.org/x/net/ipv6/control_test.go +21 -0
- data/ext/vendor/golang.org/x/net/ipv6/control_unix.go +55 -0
- data/ext/vendor/golang.org/x/net/ipv6/control_windows.go +16 -0
- data/ext/vendor/golang.org/x/net/ipv6/defs_darwin.go +112 -0
- data/ext/vendor/golang.org/x/net/ipv6/defs_dragonfly.go +84 -0
- data/ext/vendor/golang.org/x/net/ipv6/defs_freebsd.go +105 -0
- data/ext/vendor/golang.org/x/net/ipv6/defs_linux.go +147 -0
- data/ext/vendor/golang.org/x/net/ipv6/defs_netbsd.go +80 -0
- data/ext/vendor/golang.org/x/net/ipv6/defs_openbsd.go +89 -0
- data/ext/vendor/golang.org/x/net/ipv6/defs_solaris.go +114 -0
- data/ext/vendor/golang.org/x/net/ipv6/dgramopt.go +302 -0
- data/ext/vendor/golang.org/x/net/ipv6/doc.go +243 -0
- data/ext/vendor/golang.org/x/net/ipv6/endpoint.go +128 -0
- data/ext/vendor/golang.org/x/net/ipv6/example_test.go +216 -0
- data/ext/vendor/golang.org/x/net/ipv6/gen.go +199 -0
- data/ext/vendor/golang.org/x/net/ipv6/genericopt.go +58 -0
- data/ext/vendor/golang.org/x/net/ipv6/header.go +55 -0
- data/ext/vendor/golang.org/x/net/ipv6/header_test.go +55 -0
- data/ext/vendor/golang.org/x/net/ipv6/helper.go +57 -0
- data/ext/vendor/golang.org/x/net/ipv6/iana.go +82 -0
- data/ext/vendor/golang.org/x/net/ipv6/icmp.go +60 -0
- data/ext/vendor/golang.org/x/net/ipv6/icmp_bsd.go +29 -0
- data/ext/vendor/golang.org/x/net/ipv6/icmp_linux.go +27 -0
- data/ext/vendor/golang.org/x/net/ipv6/icmp_solaris.go +27 -0
- data/ext/vendor/golang.org/x/net/ipv6/icmp_stub.go +23 -0
- data/ext/vendor/golang.org/x/net/ipv6/icmp_test.go +96 -0
- data/ext/vendor/golang.org/x/net/ipv6/icmp_windows.go +22 -0
- data/ext/vendor/golang.org/x/net/ipv6/mocktransponder_test.go +32 -0
- data/ext/vendor/golang.org/x/net/ipv6/multicast_test.go +264 -0
- data/ext/vendor/golang.org/x/net/ipv6/multicastlistener_test.go +261 -0
- data/ext/vendor/golang.org/x/net/ipv6/multicastsockopt_test.go +157 -0
- data/ext/vendor/golang.org/x/net/ipv6/payload.go +23 -0
- data/ext/vendor/golang.org/x/net/ipv6/payload_cmsg.go +35 -0
- data/ext/vendor/golang.org/x/net/ipv6/payload_cmsg_go1_8.go +55 -0
- data/ext/vendor/golang.org/x/net/ipv6/payload_cmsg_go1_9.go +57 -0
- data/ext/vendor/golang.org/x/net/ipv6/payload_nocmsg.go +41 -0
- data/ext/vendor/golang.org/x/net/ipv6/readwrite_go1_8_test.go +242 -0
- data/ext/vendor/golang.org/x/net/ipv6/readwrite_go1_9_test.go +373 -0
- data/ext/vendor/golang.org/x/net/ipv6/readwrite_test.go +148 -0
- data/ext/vendor/golang.org/x/net/ipv6/sockopt.go +43 -0
- data/ext/vendor/golang.org/x/net/ipv6/sockopt_posix.go +87 -0
- data/ext/vendor/golang.org/x/net/ipv6/sockopt_stub.go +46 -0
- data/ext/vendor/golang.org/x/net/ipv6/sockopt_test.go +133 -0
- data/ext/vendor/golang.org/x/net/ipv6/sys_asmreq.go +24 -0
- data/ext/vendor/golang.org/x/net/ipv6/sys_asmreq_stub.go +17 -0
- data/ext/vendor/golang.org/x/net/ipv6/sys_bpf.go +23 -0
- data/ext/vendor/golang.org/x/net/ipv6/sys_bpf_stub.go +16 -0
- data/ext/vendor/golang.org/x/net/ipv6/sys_bsd.go +57 -0
- data/ext/vendor/golang.org/x/net/ipv6/sys_darwin.go +106 -0
- data/ext/vendor/golang.org/x/net/ipv6/sys_freebsd.go +92 -0
- data/ext/vendor/golang.org/x/net/ipv6/sys_linux.go +74 -0
- data/ext/vendor/golang.org/x/net/ipv6/sys_solaris.go +74 -0
- data/ext/vendor/golang.org/x/net/ipv6/sys_ssmreq.go +54 -0
- data/ext/vendor/golang.org/x/net/ipv6/sys_ssmreq_stub.go +21 -0
- data/ext/vendor/golang.org/x/net/ipv6/sys_stub.go +13 -0
- data/ext/vendor/golang.org/x/net/ipv6/sys_windows.go +75 -0
- data/ext/vendor/golang.org/x/net/ipv6/unicast_test.go +184 -0
- data/ext/vendor/golang.org/x/net/ipv6/unicastsockopt_test.go +120 -0
- data/ext/vendor/golang.org/x/net/ipv6/zsys_darwin.go +131 -0
- data/ext/vendor/golang.org/x/net/ipv6/zsys_dragonfly.go +88 -0
- data/ext/vendor/golang.org/x/net/ipv6/zsys_freebsd_386.go +122 -0
- data/ext/vendor/golang.org/x/net/ipv6/zsys_freebsd_amd64.go +124 -0
- data/ext/vendor/golang.org/x/net/ipv6/zsys_freebsd_arm.go +124 -0
- data/ext/vendor/golang.org/x/net/ipv6/zsys_linux_386.go +170 -0
- data/ext/vendor/golang.org/x/net/ipv6/zsys_linux_amd64.go +172 -0
- data/ext/vendor/golang.org/x/net/ipv6/zsys_linux_arm.go +170 -0
- data/ext/vendor/golang.org/x/net/ipv6/zsys_linux_arm64.go +172 -0
- data/ext/vendor/golang.org/x/net/ipv6/zsys_linux_mips.go +170 -0
- data/ext/vendor/golang.org/x/net/ipv6/zsys_linux_mips64.go +172 -0
- data/ext/vendor/golang.org/x/net/ipv6/zsys_linux_mips64le.go +172 -0
- data/ext/vendor/golang.org/x/net/ipv6/zsys_linux_mipsle.go +170 -0
- data/ext/vendor/golang.org/x/net/ipv6/zsys_linux_ppc.go +170 -0
- data/ext/vendor/golang.org/x/net/ipv6/zsys_linux_ppc64.go +172 -0
- data/ext/vendor/golang.org/x/net/ipv6/zsys_linux_ppc64le.go +172 -0
- data/ext/vendor/golang.org/x/net/ipv6/zsys_linux_s390x.go +172 -0
- data/ext/vendor/golang.org/x/net/ipv6/zsys_netbsd.go +84 -0
- data/ext/vendor/golang.org/x/net/ipv6/zsys_openbsd.go +93 -0
- data/ext/vendor/golang.org/x/net/ipv6/zsys_solaris.go +131 -0
- data/ext/vendor/golang.org/x/net/lex/httplex/httplex.go +351 -0
- data/ext/vendor/golang.org/x/net/lex/httplex/httplex_test.go +119 -0
- data/ext/vendor/golang.org/x/net/lif/address.go +105 -0
- data/ext/vendor/golang.org/x/net/lif/address_test.go +123 -0
- data/ext/vendor/golang.org/x/net/lif/binary.go +115 -0
- data/ext/vendor/golang.org/x/net/lif/defs_solaris.go +90 -0
- data/ext/vendor/golang.org/x/net/lif/lif.go +43 -0
- data/ext/vendor/golang.org/x/net/lif/link.go +126 -0
- data/ext/vendor/golang.org/x/net/lif/link_test.go +63 -0
- data/ext/vendor/golang.org/x/net/lif/sys.go +21 -0
- data/ext/vendor/golang.org/x/net/lif/sys_solaris_amd64.s +8 -0
- data/ext/vendor/golang.org/x/net/lif/syscall.go +28 -0
- data/ext/vendor/golang.org/x/net/lif/zsys_solaris_amd64.go +103 -0
- data/ext/vendor/golang.org/x/net/nettest/conntest.go +456 -0
- data/ext/vendor/golang.org/x/net/nettest/conntest_go16.go +24 -0
- data/ext/vendor/golang.org/x/net/nettest/conntest_go17.go +24 -0
- data/ext/vendor/golang.org/x/net/nettest/conntest_test.go +76 -0
- data/ext/vendor/golang.org/x/net/netutil/listen.go +48 -0
- data/ext/vendor/golang.org/x/net/netutil/listen_test.go +101 -0
- data/ext/vendor/golang.org/x/net/proxy/direct.go +18 -0
- data/ext/vendor/golang.org/x/net/proxy/per_host.go +140 -0
- data/ext/vendor/golang.org/x/net/proxy/per_host_test.go +55 -0
- data/ext/vendor/golang.org/x/net/proxy/proxy.go +134 -0
- data/ext/vendor/golang.org/x/net/proxy/proxy_test.go +215 -0
- data/ext/vendor/golang.org/x/net/proxy/socks5.go +214 -0
- data/ext/vendor/golang.org/x/net/publicsuffix/gen.go +713 -0
- data/ext/vendor/golang.org/x/net/publicsuffix/list.go +135 -0
- data/ext/vendor/golang.org/x/net/publicsuffix/list_test.go +416 -0
- data/ext/vendor/golang.org/x/net/publicsuffix/table.go +9419 -0
- data/ext/vendor/golang.org/x/net/publicsuffix/table_test.go +16756 -0
- data/ext/vendor/golang.org/x/net/route/address.go +425 -0
- data/ext/vendor/golang.org/x/net/route/address_darwin_test.go +63 -0
- data/ext/vendor/golang.org/x/net/route/address_test.go +103 -0
- data/ext/vendor/golang.org/x/net/route/binary.go +90 -0
- data/ext/vendor/golang.org/x/net/route/defs_darwin.go +114 -0
- data/ext/vendor/golang.org/x/net/route/defs_dragonfly.go +113 -0
- data/ext/vendor/golang.org/x/net/route/defs_freebsd.go +337 -0
- data/ext/vendor/golang.org/x/net/route/defs_netbsd.go +112 -0
- data/ext/vendor/golang.org/x/net/route/defs_openbsd.go +116 -0
- data/ext/vendor/golang.org/x/net/route/interface.go +64 -0
- data/ext/vendor/golang.org/x/net/route/interface_announce.go +32 -0
- data/ext/vendor/golang.org/x/net/route/interface_classic.go +66 -0
- data/ext/vendor/golang.org/x/net/route/interface_freebsd.go +78 -0
- data/ext/vendor/golang.org/x/net/route/interface_multicast.go +30 -0
- data/ext/vendor/golang.org/x/net/route/interface_openbsd.go +90 -0
- data/ext/vendor/golang.org/x/net/route/message.go +72 -0
- data/ext/vendor/golang.org/x/net/route/message_darwin_test.go +34 -0
- data/ext/vendor/golang.org/x/net/route/message_freebsd_test.go +92 -0
- data/ext/vendor/golang.org/x/net/route/message_test.go +239 -0
- data/ext/vendor/golang.org/x/net/route/route.go +123 -0
- data/ext/vendor/golang.org/x/net/route/route_classic.go +67 -0
- data/ext/vendor/golang.org/x/net/route/route_openbsd.go +65 -0
- data/ext/vendor/golang.org/x/net/route/route_test.go +390 -0
- data/ext/vendor/golang.org/x/net/route/sys.go +39 -0
- data/ext/vendor/golang.org/x/net/route/sys_darwin.go +87 -0
- data/ext/vendor/golang.org/x/net/route/sys_dragonfly.go +76 -0
- data/ext/vendor/golang.org/x/net/route/sys_freebsd.go +155 -0
- data/ext/vendor/golang.org/x/net/route/sys_netbsd.go +71 -0
- data/ext/vendor/golang.org/x/net/route/sys_openbsd.go +80 -0
- data/ext/vendor/golang.org/x/net/route/syscall.go +28 -0
- data/ext/vendor/golang.org/x/net/route/zsys_darwin.go +99 -0
- data/ext/vendor/golang.org/x/net/route/zsys_dragonfly.go +98 -0
- data/ext/vendor/golang.org/x/net/route/zsys_freebsd_386.go +126 -0
- data/ext/vendor/golang.org/x/net/route/zsys_freebsd_amd64.go +123 -0
- data/ext/vendor/golang.org/x/net/route/zsys_freebsd_arm.go +123 -0
- data/ext/vendor/golang.org/x/net/route/zsys_netbsd.go +97 -0
- data/ext/vendor/golang.org/x/net/route/zsys_openbsd.go +101 -0
- data/ext/vendor/golang.org/x/net/trace/events.go +532 -0
- data/ext/vendor/golang.org/x/net/trace/histogram.go +365 -0
- data/ext/vendor/golang.org/x/net/trace/histogram_test.go +325 -0
- data/ext/vendor/golang.org/x/net/trace/trace.go +1082 -0
- data/ext/vendor/golang.org/x/net/trace/trace_go16.go +21 -0
- data/ext/vendor/golang.org/x/net/trace/trace_go17.go +21 -0
- data/ext/vendor/golang.org/x/net/trace/trace_test.go +178 -0
- data/ext/vendor/golang.org/x/net/webdav/file.go +796 -0
- data/ext/vendor/golang.org/x/net/webdav/file_go1.6.go +17 -0
- data/ext/vendor/golang.org/x/net/webdav/file_go1.7.go +16 -0
- data/ext/vendor/golang.org/x/net/webdav/file_test.go +1184 -0
- data/ext/vendor/golang.org/x/net/webdav/if.go +173 -0
- data/ext/vendor/golang.org/x/net/webdav/if_test.go +322 -0
- data/ext/vendor/golang.org/x/net/webdav/internal/xml/README +11 -0
- data/ext/vendor/golang.org/x/net/webdav/internal/xml/atom_test.go +56 -0
- data/ext/vendor/golang.org/x/net/webdav/internal/xml/example_test.go +151 -0
- data/ext/vendor/golang.org/x/net/webdav/internal/xml/marshal.go +1223 -0
- data/ext/vendor/golang.org/x/net/webdav/internal/xml/marshal_test.go +1939 -0
- data/ext/vendor/golang.org/x/net/webdav/internal/xml/read.go +692 -0
- data/ext/vendor/golang.org/x/net/webdav/internal/xml/read_test.go +744 -0
- data/ext/vendor/golang.org/x/net/webdav/internal/xml/typeinfo.go +371 -0
- data/ext/vendor/golang.org/x/net/webdav/internal/xml/xml.go +1998 -0
- data/ext/vendor/golang.org/x/net/webdav/internal/xml/xml_test.go +752 -0
- data/ext/vendor/golang.org/x/net/webdav/litmus_test_server.go +94 -0
- data/ext/vendor/golang.org/x/net/webdav/lock.go +445 -0
- data/ext/vendor/golang.org/x/net/webdav/lock_test.go +731 -0
- data/ext/vendor/golang.org/x/net/webdav/prop.go +418 -0
- data/ext/vendor/golang.org/x/net/webdav/prop_test.go +613 -0
- data/ext/vendor/golang.org/x/net/webdav/webdav.go +702 -0
- data/ext/vendor/golang.org/x/net/webdav/webdav_test.go +344 -0
- data/ext/vendor/golang.org/x/net/webdav/xml.go +519 -0
- data/ext/vendor/golang.org/x/net/webdav/xml_test.go +906 -0
- data/ext/vendor/golang.org/x/net/websocket/client.go +106 -0
- data/ext/vendor/golang.org/x/net/websocket/dial.go +24 -0
- data/ext/vendor/golang.org/x/net/websocket/dial_test.go +43 -0
- data/ext/vendor/golang.org/x/net/websocket/exampledial_test.go +31 -0
- data/ext/vendor/golang.org/x/net/websocket/examplehandler_test.go +26 -0
- data/ext/vendor/golang.org/x/net/websocket/hybi.go +583 -0
- data/ext/vendor/golang.org/x/net/websocket/hybi_test.go +608 -0
- data/ext/vendor/golang.org/x/net/websocket/server.go +113 -0
- data/ext/vendor/golang.org/x/net/websocket/websocket.go +448 -0
- data/ext/vendor/golang.org/x/net/websocket/websocket_test.go +665 -0
- data/ext/vendor/golang.org/x/net/xsrftoken/xsrf.go +94 -0
- data/ext/vendor/golang.org/x/net/xsrftoken/xsrf_test.go +83 -0
- data/ext/vendor/golang.org/x/text/AUTHORS +3 -0
- data/ext/vendor/golang.org/x/text/CONTRIBUTING.md +31 -0
- data/ext/vendor/golang.org/x/text/CONTRIBUTORS +3 -0
- data/ext/vendor/golang.org/x/text/LICENSE +27 -0
- data/ext/vendor/golang.org/x/text/PATENTS +22 -0
- data/ext/vendor/golang.org/x/text/README.md +91 -0
- data/ext/vendor/golang.org/x/text/cases/cases.go +162 -0
- data/ext/vendor/golang.org/x/text/cases/context.go +376 -0
- data/ext/vendor/golang.org/x/text/cases/context_test.go +438 -0
- data/ext/vendor/golang.org/x/text/cases/example_test.go +53 -0
- data/ext/vendor/golang.org/x/text/cases/fold.go +34 -0
- data/ext/vendor/golang.org/x/text/cases/fold_test.go +51 -0
- data/ext/vendor/golang.org/x/text/cases/gen.go +839 -0
- data/ext/vendor/golang.org/x/text/cases/gen_trieval.go +219 -0
- data/ext/vendor/golang.org/x/text/cases/icu.go +61 -0
- data/ext/vendor/golang.org/x/text/cases/icu_test.go +210 -0
- data/ext/vendor/golang.org/x/text/cases/info.go +82 -0
- data/ext/vendor/golang.org/x/text/cases/map.go +816 -0
- data/ext/vendor/golang.org/x/text/cases/map_test.go +950 -0
- data/ext/vendor/golang.org/x/text/cases/tables.go +2251 -0
- data/ext/vendor/golang.org/x/text/cases/tables_test.go +1158 -0
- data/ext/vendor/golang.org/x/text/cases/trieval.go +215 -0
- data/ext/vendor/golang.org/x/text/cmd/gotext/doc.go +35 -0
- data/ext/vendor/golang.org/x/text/cmd/gotext/extract.go +195 -0
- data/ext/vendor/golang.org/x/text/cmd/gotext/main.go +356 -0
- data/ext/vendor/golang.org/x/text/cmd/gotext/message.go +127 -0
- data/ext/vendor/golang.org/x/text/codereview.cfg +1 -0
- data/ext/vendor/golang.org/x/text/collate/build/builder.go +702 -0
- data/ext/vendor/golang.org/x/text/collate/build/builder_test.go +290 -0
- data/ext/vendor/golang.org/x/text/collate/build/colelem.go +294 -0
- data/ext/vendor/golang.org/x/text/collate/build/colelem_test.go +215 -0
- data/ext/vendor/golang.org/x/text/collate/build/contract.go +309 -0
- data/ext/vendor/golang.org/x/text/collate/build/contract_test.go +266 -0
- data/ext/vendor/golang.org/x/text/collate/build/order.go +393 -0
- data/ext/vendor/golang.org/x/text/collate/build/order_test.go +229 -0
- data/ext/vendor/golang.org/x/text/collate/build/table.go +81 -0
- data/ext/vendor/golang.org/x/text/collate/build/trie.go +290 -0
- data/ext/vendor/golang.org/x/text/collate/build/trie_test.go +107 -0
- data/ext/vendor/golang.org/x/text/collate/collate.go +403 -0
- data/ext/vendor/golang.org/x/text/collate/collate_test.go +482 -0
- data/ext/vendor/golang.org/x/text/collate/export_test.go +51 -0
- data/ext/vendor/golang.org/x/text/collate/index.go +32 -0
- data/ext/vendor/golang.org/x/text/collate/maketables.go +553 -0
- data/ext/vendor/golang.org/x/text/collate/option.go +239 -0
- data/ext/vendor/golang.org/x/text/collate/option_test.go +209 -0
- data/ext/vendor/golang.org/x/text/collate/reg_test.go +230 -0
- data/ext/vendor/golang.org/x/text/collate/sort.go +81 -0
- data/ext/vendor/golang.org/x/text/collate/sort_test.go +55 -0
- data/ext/vendor/golang.org/x/text/collate/table_test.go +291 -0
- data/ext/vendor/golang.org/x/text/collate/tables.go +73789 -0
- data/ext/vendor/golang.org/x/text/collate/tools/colcmp/Makefile +7 -0
- data/ext/vendor/golang.org/x/text/collate/tools/colcmp/chars.go +1156 -0
- data/ext/vendor/golang.org/x/text/collate/tools/colcmp/col.go +97 -0
- data/ext/vendor/golang.org/x/text/collate/tools/colcmp/colcmp.go +529 -0
- data/ext/vendor/golang.org/x/text/collate/tools/colcmp/darwin.go +111 -0
- data/ext/vendor/golang.org/x/text/collate/tools/colcmp/gen.go +183 -0
- data/ext/vendor/golang.org/x/text/collate/tools/colcmp/icu.go +209 -0
- data/ext/vendor/golang.org/x/text/currency/common.go +66 -0
- data/ext/vendor/golang.org/x/text/currency/currency.go +185 -0
- data/ext/vendor/golang.org/x/text/currency/currency_test.go +171 -0
- data/ext/vendor/golang.org/x/text/currency/example_test.go +27 -0
- data/ext/vendor/golang.org/x/text/currency/format.go +215 -0
- data/ext/vendor/golang.org/x/text/currency/format_test.go +70 -0
- data/ext/vendor/golang.org/x/text/currency/gen.go +400 -0
- data/ext/vendor/golang.org/x/text/currency/gen_common.go +70 -0
- data/ext/vendor/golang.org/x/text/currency/query.go +152 -0
- data/ext/vendor/golang.org/x/text/currency/query_test.go +107 -0
- data/ext/vendor/golang.org/x/text/currency/tables.go +2574 -0
- data/ext/vendor/golang.org/x/text/currency/tables_test.go +93 -0
- data/ext/vendor/golang.org/x/text/doc.go +13 -0
- data/ext/vendor/golang.org/x/text/encoding/charmap/charmap.go +249 -0
- data/ext/vendor/golang.org/x/text/encoding/charmap/charmap_test.go +258 -0
- data/ext/vendor/golang.org/x/text/encoding/charmap/maketables.go +556 -0
- data/ext/vendor/golang.org/x/text/encoding/charmap/tables.go +7410 -0
- data/ext/vendor/golang.org/x/text/encoding/encoding.go +335 -0
- data/ext/vendor/golang.org/x/text/encoding/encoding_test.go +290 -0
- data/ext/vendor/golang.org/x/text/encoding/example_test.go +42 -0
- data/ext/vendor/golang.org/x/text/encoding/htmlindex/gen.go +173 -0
- data/ext/vendor/golang.org/x/text/encoding/htmlindex/htmlindex.go +86 -0
- data/ext/vendor/golang.org/x/text/encoding/htmlindex/htmlindex_test.go +144 -0
- data/ext/vendor/golang.org/x/text/encoding/htmlindex/map.go +105 -0
- data/ext/vendor/golang.org/x/text/encoding/htmlindex/tables.go +352 -0
- data/ext/vendor/golang.org/x/text/encoding/ianaindex/example_test.go +27 -0
- data/ext/vendor/golang.org/x/text/encoding/ianaindex/gen.go +192 -0
- data/ext/vendor/golang.org/x/text/encoding/ianaindex/ianaindex.go +209 -0
- data/ext/vendor/golang.org/x/text/encoding/ianaindex/ianaindex_test.go +192 -0
- data/ext/vendor/golang.org/x/text/encoding/ianaindex/tables.go +2348 -0
- data/ext/vendor/golang.org/x/text/encoding/internal/enctest/enctest.go +180 -0
- data/ext/vendor/golang.org/x/text/encoding/internal/identifier/gen.go +137 -0
- data/ext/vendor/golang.org/x/text/encoding/internal/identifier/identifier.go +81 -0
- data/ext/vendor/golang.org/x/text/encoding/internal/identifier/mib.go +1621 -0
- data/ext/vendor/golang.org/x/text/encoding/internal/internal.go +75 -0
- data/ext/vendor/golang.org/x/text/encoding/japanese/all.go +12 -0
- data/ext/vendor/golang.org/x/text/encoding/japanese/all_test.go +248 -0
- data/ext/vendor/golang.org/x/text/encoding/japanese/eucjp.go +225 -0
- data/ext/vendor/golang.org/x/text/encoding/japanese/iso2022jp.go +299 -0
- data/ext/vendor/golang.org/x/text/encoding/japanese/maketables.go +161 -0
- data/ext/vendor/golang.org/x/text/encoding/japanese/shiftjis.go +189 -0
- data/ext/vendor/golang.org/x/text/encoding/japanese/tables.go +26971 -0
- data/ext/vendor/golang.org/x/text/encoding/korean/all_test.go +94 -0
- data/ext/vendor/golang.org/x/text/encoding/korean/euckr.go +177 -0
- data/ext/vendor/golang.org/x/text/encoding/korean/maketables.go +143 -0
- data/ext/vendor/golang.org/x/text/encoding/korean/tables.go +34152 -0
- data/ext/vendor/golang.org/x/text/encoding/simplifiedchinese/all.go +12 -0
- data/ext/vendor/golang.org/x/text/encoding/simplifiedchinese/all_test.go +143 -0
- data/ext/vendor/golang.org/x/text/encoding/simplifiedchinese/gbk.go +269 -0
- data/ext/vendor/golang.org/x/text/encoding/simplifiedchinese/hzgb2312.go +245 -0
- data/ext/vendor/golang.org/x/text/encoding/simplifiedchinese/maketables.go +161 -0
- data/ext/vendor/golang.org/x/text/encoding/simplifiedchinese/tables.go +43999 -0
- data/ext/vendor/golang.org/x/text/encoding/testdata/candide-gb18030.txt +510 -0
- data/ext/vendor/golang.org/x/text/encoding/testdata/candide-utf-16le.txt +0 -0
- data/ext/vendor/golang.org/x/text/encoding/testdata/candide-utf-32be.txt +0 -0
- data/ext/vendor/golang.org/x/text/encoding/testdata/candide-utf-8.txt +510 -0
- data/ext/vendor/golang.org/x/text/encoding/testdata/candide-windows-1252.txt +510 -0
- data/ext/vendor/golang.org/x/text/encoding/testdata/rashomon-euc-jp.txt +178 -0
- data/ext/vendor/golang.org/x/text/encoding/testdata/rashomon-iso-2022-jp.txt +178 -0
- data/ext/vendor/golang.org/x/text/encoding/testdata/rashomon-shift-jis.txt +178 -0
- data/ext/vendor/golang.org/x/text/encoding/testdata/rashomon-utf-8.txt +178 -0
- data/ext/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-gb-levels-1-and-2-hz-gb2312.txt +107 -0
- data/ext/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-gb-levels-1-and-2-utf-8.txt +107 -0
- data/ext/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-simplified-gbk.txt +107 -0
- data/ext/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-simplified-utf-8.txt +107 -0
- data/ext/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-traditional-big5.txt +106 -0
- data/ext/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-traditional-utf-8.txt +106 -0
- data/ext/vendor/golang.org/x/text/encoding/testdata/unsu-joh-eun-nal-euc-kr.txt +175 -0
- data/ext/vendor/golang.org/x/text/encoding/testdata/unsu-joh-eun-nal-utf-8.txt +175 -0
- data/ext/vendor/golang.org/x/text/encoding/traditionalchinese/all_test.go +114 -0
- data/ext/vendor/golang.org/x/text/encoding/traditionalchinese/big5.go +199 -0
- data/ext/vendor/golang.org/x/text/encoding/traditionalchinese/maketables.go +140 -0
- data/ext/vendor/golang.org/x/text/encoding/traditionalchinese/tables.go +37142 -0
- data/ext/vendor/golang.org/x/text/encoding/unicode/override.go +82 -0
- data/ext/vendor/golang.org/x/text/encoding/unicode/unicode.go +434 -0
- data/ext/vendor/golang.org/x/text/encoding/unicode/unicode_test.go +499 -0
- data/ext/vendor/golang.org/x/text/encoding/unicode/utf32/utf32.go +296 -0
- data/ext/vendor/golang.org/x/text/encoding/unicode/utf32/utf32_test.go +248 -0
- data/ext/vendor/golang.org/x/text/feature/plural/common.go +70 -0
- data/ext/vendor/golang.org/x/text/feature/plural/data_test.go +190 -0
- data/ext/vendor/golang.org/x/text/feature/plural/example_test.go +46 -0
- data/ext/vendor/golang.org/x/text/feature/plural/gen.go +513 -0
- data/ext/vendor/golang.org/x/text/feature/plural/gen_common.go +74 -0
- data/ext/vendor/golang.org/x/text/feature/plural/message.go +244 -0
- data/ext/vendor/golang.org/x/text/feature/plural/message_test.go +197 -0
- data/ext/vendor/golang.org/x/text/feature/plural/plural.go +258 -0
- data/ext/vendor/golang.org/x/text/feature/plural/plural_test.go +216 -0
- data/ext/vendor/golang.org/x/text/feature/plural/tables.go +540 -0
- data/ext/vendor/golang.org/x/text/gen.go +318 -0
- data/ext/vendor/golang.org/x/text/internal/catmsg/catmsg.go +366 -0
- data/ext/vendor/golang.org/x/text/internal/catmsg/catmsg_test.go +316 -0
- data/ext/vendor/golang.org/x/text/internal/catmsg/codec.go +407 -0
- data/ext/vendor/golang.org/x/text/internal/catmsg/varint.go +62 -0
- data/ext/vendor/golang.org/x/text/internal/catmsg/varint_test.go +123 -0
- data/ext/vendor/golang.org/x/text/internal/colltab/collate_test.go +121 -0
- data/ext/vendor/golang.org/x/text/internal/colltab/collelem.go +371 -0
- data/ext/vendor/golang.org/x/text/internal/colltab/collelem_test.go +183 -0
- data/ext/vendor/golang.org/x/text/internal/colltab/colltab.go +105 -0
- data/ext/vendor/golang.org/x/text/internal/colltab/colltab_test.go +64 -0
- data/ext/vendor/golang.org/x/text/internal/colltab/contract.go +145 -0
- data/ext/vendor/golang.org/x/text/internal/colltab/contract_test.go +131 -0
- data/ext/vendor/golang.org/x/text/internal/colltab/iter.go +178 -0
- data/ext/vendor/golang.org/x/text/internal/colltab/iter_test.go +63 -0
- data/ext/vendor/golang.org/x/text/internal/colltab/numeric.go +236 -0
- data/ext/vendor/golang.org/x/text/internal/colltab/numeric_test.go +159 -0
- data/ext/vendor/golang.org/x/text/internal/colltab/table.go +275 -0
- data/ext/vendor/golang.org/x/text/internal/colltab/trie.go +159 -0
- data/ext/vendor/golang.org/x/text/internal/colltab/trie_test.go +106 -0
- data/ext/vendor/golang.org/x/text/internal/colltab/weighter.go +31 -0
- data/ext/vendor/golang.org/x/text/internal/colltab/weighter_test.go +42 -0
- data/ext/vendor/golang.org/x/text/internal/export/README +4 -0
- data/ext/vendor/golang.org/x/text/internal/export/idna/common_test.go +55 -0
- data/ext/vendor/golang.org/x/text/internal/export/idna/example_test.go +68 -0
- data/ext/vendor/golang.org/x/text/internal/export/idna/gen.go +276 -0
- data/ext/vendor/golang.org/x/text/internal/export/idna/gen_common.go +59 -0
- data/ext/vendor/golang.org/x/text/internal/export/idna/gen_test.go +91 -0
- data/ext/vendor/golang.org/x/text/internal/export/idna/gen_trieval.go +123 -0
- data/ext/vendor/golang.org/x/text/internal/export/idna/idna.go +717 -0
- data/ext/vendor/golang.org/x/text/internal/export/idna/idna_test.go +308 -0
- data/ext/vendor/golang.org/x/text/internal/export/idna/punycode.go +201 -0
- data/ext/vendor/golang.org/x/text/internal/export/idna/punycode_test.go +198 -0
- data/ext/vendor/golang.org/x/text/internal/export/idna/tables.go +4557 -0
- data/ext/vendor/golang.org/x/text/internal/export/idna/trie.go +70 -0
- data/ext/vendor/golang.org/x/text/internal/export/idna/trieval.go +119 -0
- data/ext/vendor/golang.org/x/text/internal/format/format.go +41 -0
- data/ext/vendor/golang.org/x/text/internal/gen.go +52 -0
- data/ext/vendor/golang.org/x/text/internal/gen/code.go +351 -0
- data/ext/vendor/golang.org/x/text/internal/gen/gen.go +281 -0
- data/ext/vendor/golang.org/x/text/internal/gen_test.go +38 -0
- data/ext/vendor/golang.org/x/text/internal/internal.go +51 -0
- data/ext/vendor/golang.org/x/text/internal/internal_test.go +38 -0
- data/ext/vendor/golang.org/x/text/internal/match.go +67 -0
- data/ext/vendor/golang.org/x/text/internal/match_test.go +56 -0
- data/ext/vendor/golang.org/x/text/internal/number/common.go +40 -0
- data/ext/vendor/golang.org/x/text/internal/number/decimal.go +498 -0
- data/ext/vendor/golang.org/x/text/internal/number/decimal_test.go +329 -0
- data/ext/vendor/golang.org/x/text/internal/number/format.go +540 -0
- data/ext/vendor/golang.org/x/text/internal/number/format_test.go +522 -0
- data/ext/vendor/golang.org/x/text/internal/number/gen.go +458 -0
- data/ext/vendor/golang.org/x/text/internal/number/gen_common.go +44 -0
- data/ext/vendor/golang.org/x/text/internal/number/number.go +154 -0
- data/ext/vendor/golang.org/x/text/internal/number/number_test.go +100 -0
- data/ext/vendor/golang.org/x/text/internal/number/pattern.go +485 -0
- data/ext/vendor/golang.org/x/text/internal/number/pattern_test.go +438 -0
- data/ext/vendor/golang.org/x/text/internal/number/roundingmode_string.go +16 -0
- data/ext/vendor/golang.org/x/text/internal/number/tables.go +1154 -0
- data/ext/vendor/golang.org/x/text/internal/number/tables_test.go +125 -0
- data/ext/vendor/golang.org/x/text/internal/stringset/set.go +86 -0
- data/ext/vendor/golang.org/x/text/internal/stringset/set_test.go +53 -0
- data/ext/vendor/golang.org/x/text/internal/tables.go +117 -0
- data/ext/vendor/golang.org/x/text/internal/tag/tag.go +100 -0
- data/ext/vendor/golang.org/x/text/internal/tag/tag_test.go +67 -0
- data/ext/vendor/golang.org/x/text/internal/testtext/codesize.go +53 -0
- data/ext/vendor/golang.org/x/text/internal/testtext/flag.go +22 -0
- data/ext/vendor/golang.org/x/text/internal/testtext/gc.go +14 -0
- data/ext/vendor/golang.org/x/text/internal/testtext/gccgo.go +11 -0
- data/ext/vendor/golang.org/x/text/internal/testtext/go1_6.go +23 -0
- data/ext/vendor/golang.org/x/text/internal/testtext/go1_7.go +17 -0
- data/ext/vendor/golang.org/x/text/internal/testtext/text.go +105 -0
- data/ext/vendor/golang.org/x/text/internal/triegen/compact.go +58 -0
- data/ext/vendor/golang.org/x/text/internal/triegen/data_test.go +875 -0
- data/ext/vendor/golang.org/x/text/internal/triegen/example_compact_test.go +71 -0
- data/ext/vendor/golang.org/x/text/internal/triegen/example_test.go +148 -0
- data/ext/vendor/golang.org/x/text/internal/triegen/gen_test.go +68 -0
- data/ext/vendor/golang.org/x/text/internal/triegen/print.go +251 -0
- data/ext/vendor/golang.org/x/text/internal/triegen/triegen.go +494 -0
- data/ext/vendor/golang.org/x/text/internal/ucd/example_test.go +81 -0
- data/ext/vendor/golang.org/x/text/internal/ucd/ucd.go +371 -0
- data/ext/vendor/golang.org/x/text/internal/ucd/ucd_test.go +105 -0
- data/ext/vendor/golang.org/x/text/internal/utf8internal/utf8internal.go +87 -0
- data/ext/vendor/golang.org/x/text/language/Makefile +16 -0
- data/ext/vendor/golang.org/x/text/language/common.go +16 -0
- data/ext/vendor/golang.org/x/text/language/coverage.go +197 -0
- data/ext/vendor/golang.org/x/text/language/coverage_test.go +154 -0
- data/ext/vendor/golang.org/x/text/language/display/dict.go +92 -0
- data/ext/vendor/golang.org/x/text/language/display/dict_test.go +39 -0
- data/ext/vendor/golang.org/x/text/language/display/display.go +420 -0
- data/ext/vendor/golang.org/x/text/language/display/display_test.go +705 -0
- data/ext/vendor/golang.org/x/text/language/display/examples_test.go +116 -0
- data/ext/vendor/golang.org/x/text/language/display/lookup.go +251 -0
- data/ext/vendor/golang.org/x/text/language/display/maketables.go +602 -0
- data/ext/vendor/golang.org/x/text/language/display/tables.go +50344 -0
- data/ext/vendor/golang.org/x/text/language/doc.go +102 -0
- data/ext/vendor/golang.org/x/text/language/examples_test.go +413 -0
- data/ext/vendor/golang.org/x/text/language/gen.go +1706 -0
- data/ext/vendor/golang.org/x/text/language/gen_common.go +20 -0
- data/ext/vendor/golang.org/x/text/language/gen_index.go +162 -0
- data/ext/vendor/golang.org/x/text/language/go1_1.go +38 -0
- data/ext/vendor/golang.org/x/text/language/go1_2.go +11 -0
- data/ext/vendor/golang.org/x/text/language/httpexample_test.go +48 -0
- data/ext/vendor/golang.org/x/text/language/index.go +769 -0
- data/ext/vendor/golang.org/x/text/language/language.go +887 -0
- data/ext/vendor/golang.org/x/text/language/language_test.go +878 -0
- data/ext/vendor/golang.org/x/text/language/lookup.go +396 -0
- data/ext/vendor/golang.org/x/text/language/lookup_test.go +457 -0
- data/ext/vendor/golang.org/x/text/language/match.go +933 -0
- data/ext/vendor/golang.org/x/text/language/match_test.go +505 -0
- data/ext/vendor/golang.org/x/text/language/parse.go +859 -0
- data/ext/vendor/golang.org/x/text/language/parse_test.go +517 -0
- data/ext/vendor/golang.org/x/text/language/tables.go +3675 -0
- data/ext/vendor/golang.org/x/text/language/tags.go +143 -0
- data/ext/vendor/golang.org/x/text/language/testdata/CLDRLocaleMatcherTest.txt +389 -0
- data/ext/vendor/golang.org/x/text/language/testdata/GoLocaleMatcherTest.txt +226 -0
- data/ext/vendor/golang.org/x/text/message/catalog.go +28 -0
- data/ext/vendor/golang.org/x/text/message/catalog/catalog.go +292 -0
- data/ext/vendor/golang.org/x/text/message/catalog/catalog_test.go +194 -0
- data/ext/vendor/golang.org/x/text/message/catalog/dict.go +90 -0
- data/ext/vendor/golang.org/x/text/message/doc.go +100 -0
- data/ext/vendor/golang.org/x/text/message/examples_test.go +42 -0
- data/ext/vendor/golang.org/x/text/message/fmt_test.go +1889 -0
- data/ext/vendor/golang.org/x/text/message/format.go +532 -0
- data/ext/vendor/golang.org/x/text/message/message.go +169 -0
- data/ext/vendor/golang.org/x/text/message/message_test.go +181 -0
- data/ext/vendor/golang.org/x/text/message/print.go +1194 -0
- data/ext/vendor/golang.org/x/text/number/doc.go +28 -0
- data/ext/vendor/golang.org/x/text/number/examples_test.go +28 -0
- data/ext/vendor/golang.org/x/text/number/format.go +122 -0
- data/ext/vendor/golang.org/x/text/number/format_test.go +107 -0
- data/ext/vendor/golang.org/x/text/number/number.go +77 -0
- data/ext/vendor/golang.org/x/text/number/number_test.go +190 -0
- data/ext/vendor/golang.org/x/text/number/option.go +177 -0
- data/ext/vendor/golang.org/x/text/runes/cond.go +187 -0
- data/ext/vendor/golang.org/x/text/runes/cond_test.go +282 -0
- data/ext/vendor/golang.org/x/text/runes/example_test.go +60 -0
- data/ext/vendor/golang.org/x/text/runes/runes.go +355 -0
- data/ext/vendor/golang.org/x/text/runes/runes_test.go +664 -0
- data/ext/vendor/golang.org/x/text/search/index.go +35 -0
- data/ext/vendor/golang.org/x/text/search/pattern.go +155 -0
- data/ext/vendor/golang.org/x/text/search/pattern_test.go +357 -0
- data/ext/vendor/golang.org/x/text/search/search.go +237 -0
- data/ext/vendor/golang.org/x/text/search/tables.go +12448 -0
- data/ext/vendor/golang.org/x/text/secure/bidirule/bench_test.go +54 -0
- data/ext/vendor/golang.org/x/text/secure/bidirule/bidirule.go +340 -0
- data/ext/vendor/golang.org/x/text/secure/bidirule/bidirule_test.go +851 -0
- data/ext/vendor/golang.org/x/text/secure/doc.go +6 -0
- data/ext/vendor/golang.org/x/text/secure/precis/benchmark_test.go +82 -0
- data/ext/vendor/golang.org/x/text/secure/precis/class.go +36 -0
- data/ext/vendor/golang.org/x/text/secure/precis/class_test.go +50 -0
- data/ext/vendor/golang.org/x/text/secure/precis/context.go +139 -0
- data/ext/vendor/golang.org/x/text/secure/precis/doc.go +14 -0
- data/ext/vendor/golang.org/x/text/secure/precis/enforce_test.go +396 -0
- data/ext/vendor/golang.org/x/text/secure/precis/gen.go +310 -0
- data/ext/vendor/golang.org/x/text/secure/precis/gen_trieval.go +68 -0
- data/ext/vendor/golang.org/x/text/secure/precis/nickname.go +72 -0
- data/ext/vendor/golang.org/x/text/secure/precis/options.go +157 -0
- data/ext/vendor/golang.org/x/text/secure/precis/profile.go +402 -0
- data/ext/vendor/golang.org/x/text/secure/precis/profile_test.go +149 -0
- data/ext/vendor/golang.org/x/text/secure/precis/profiles.go +78 -0
- data/ext/vendor/golang.org/x/text/secure/precis/tables.go +3887 -0
- data/ext/vendor/golang.org/x/text/secure/precis/tables_test.go +69 -0
- data/ext/vendor/golang.org/x/text/secure/precis/transformer.go +32 -0
- data/ext/vendor/golang.org/x/text/secure/precis/trieval.go +64 -0
- data/ext/vendor/golang.org/x/text/transform/examples_test.go +37 -0
- data/ext/vendor/golang.org/x/text/transform/transform.go +705 -0
- data/ext/vendor/golang.org/x/text/transform/transform_test.go +1317 -0
- data/ext/vendor/golang.org/x/text/unicode/bidi/bidi.go +198 -0
- data/ext/vendor/golang.org/x/text/unicode/bidi/bracket.go +335 -0
- data/ext/vendor/golang.org/x/text/unicode/bidi/core.go +1058 -0
- data/ext/vendor/golang.org/x/text/unicode/bidi/core_test.go +224 -0
- data/ext/vendor/golang.org/x/text/unicode/bidi/gen.go +133 -0
- data/ext/vendor/golang.org/x/text/unicode/bidi/gen_ranges.go +57 -0
- data/ext/vendor/golang.org/x/text/unicode/bidi/gen_trieval.go +64 -0
- data/ext/vendor/golang.org/x/text/unicode/bidi/prop.go +206 -0
- data/ext/vendor/golang.org/x/text/unicode/bidi/ranges_test.go +53 -0
- data/ext/vendor/golang.org/x/text/unicode/bidi/tables.go +1813 -0
- data/ext/vendor/golang.org/x/text/unicode/bidi/tables_test.go +82 -0
- data/ext/vendor/golang.org/x/text/unicode/bidi/trieval.go +60 -0
- data/ext/vendor/golang.org/x/text/unicode/cldr/base.go +100 -0
- data/ext/vendor/golang.org/x/text/unicode/cldr/cldr.go +130 -0
- data/ext/vendor/golang.org/x/text/unicode/cldr/cldr_test.go +27 -0
- data/ext/vendor/golang.org/x/text/unicode/cldr/collate.go +359 -0
- data/ext/vendor/golang.org/x/text/unicode/cldr/collate_test.go +275 -0
- data/ext/vendor/golang.org/x/text/unicode/cldr/data_test.go +186 -0
- data/ext/vendor/golang.org/x/text/unicode/cldr/decode.go +171 -0
- data/ext/vendor/golang.org/x/text/unicode/cldr/examples_test.go +21 -0
- data/ext/vendor/golang.org/x/text/unicode/cldr/makexml.go +400 -0
- data/ext/vendor/golang.org/x/text/unicode/cldr/resolve.go +602 -0
- data/ext/vendor/golang.org/x/text/unicode/cldr/resolve_test.go +368 -0
- data/ext/vendor/golang.org/x/text/unicode/cldr/slice.go +144 -0
- data/ext/vendor/golang.org/x/text/unicode/cldr/slice_test.go +175 -0
- data/ext/vendor/golang.org/x/text/unicode/cldr/xml.go +1487 -0
- data/ext/vendor/golang.org/x/text/unicode/doc.go +8 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/composition.go +508 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/composition_test.go +130 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/example_iter_test.go +82 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/example_test.go +27 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/forminfo.go +259 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/forminfo_test.go +54 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/input.go +109 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/iter.go +457 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/iter_test.go +98 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/maketables.go +976 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/norm_test.go +14 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/normalize.go +609 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/normalize_test.go +1287 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/readwriter.go +125 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/readwriter_test.go +56 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/tables.go +7651 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/transform.go +88 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/transform_test.go +101 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/trie.go +54 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/triegen.go +117 -0
- data/ext/vendor/golang.org/x/text/unicode/norm/ucd_test.go +275 -0
- data/ext/vendor/golang.org/x/text/unicode/rangetable/gen.go +115 -0
- data/ext/vendor/golang.org/x/text/unicode/rangetable/merge.go +260 -0
- data/ext/vendor/golang.org/x/text/unicode/rangetable/merge_test.go +184 -0
- data/ext/vendor/golang.org/x/text/unicode/rangetable/rangetable.go +70 -0
- data/ext/vendor/golang.org/x/text/unicode/rangetable/rangetable_test.go +55 -0
- data/ext/vendor/golang.org/x/text/unicode/rangetable/tables.go +6376 -0
- data/ext/vendor/golang.org/x/text/unicode/runenames/bits.go +59 -0
- data/ext/vendor/golang.org/x/text/unicode/runenames/example_test.go +118 -0
- data/ext/vendor/golang.org/x/text/unicode/runenames/gen.go +195 -0
- data/ext/vendor/golang.org/x/text/unicode/runenames/gen_bits.go +63 -0
- data/ext/vendor/golang.org/x/text/unicode/runenames/runenames.go +48 -0
- data/ext/vendor/golang.org/x/text/unicode/runenames/runenames_test.go +46 -0
- data/ext/vendor/golang.org/x/text/unicode/runenames/tables.go +15514 -0
- data/ext/vendor/golang.org/x/text/width/common_test.go +92 -0
- data/ext/vendor/golang.org/x/text/width/example_test.go +52 -0
- data/ext/vendor/golang.org/x/text/width/gen.go +115 -0
- data/ext/vendor/golang.org/x/text/width/gen_common.go +96 -0
- data/ext/vendor/golang.org/x/text/width/gen_trieval.go +34 -0
- data/ext/vendor/golang.org/x/text/width/kind_string.go +16 -0
- data/ext/vendor/golang.org/x/text/width/runes_test.go +461 -0
- data/ext/vendor/golang.org/x/text/width/tables.go +1316 -0
- data/ext/vendor/golang.org/x/text/width/tables_test.go +59 -0
- data/ext/vendor/golang.org/x/text/width/transform.go +239 -0
- data/ext/vendor/golang.org/x/text/width/transform_test.go +701 -0
- data/ext/vendor/golang.org/x/text/width/trieval.go +30 -0
- data/ext/vendor/golang.org/x/text/width/width.go +206 -0
- data/lib/ires/version.rb +1 -1
- data/shared/darwin/ires.so +0 -0
- data/shared/linux/ires.so +0 -0
- metadata +1011 -23
- data/ext/operate/image.go +0 -176
- data/ext/util/uri/uri.go +0 -105
- data/ext/vendor/github.com/satori/go.uuid/README.md +0 -65
- data/ext/vendor/github.com/satori/go.uuid/benchmarks_test.go +0 -121
- data/ext/vendor/github.com/satori/go.uuid/uuid.go +0 -488
- data/ext/vendor/github.com/satori/go.uuid/uuid_test.go +0 -633
@@ -0,0 +1,180 @@
|
|
1
|
+
// Copyright 2017 The Go Authors. All rights reserved.
|
2
|
+
// Use of this source code is governed by a BSD-style
|
3
|
+
// license that can be found in the LICENSE file.
|
4
|
+
|
5
|
+
package enctest
|
6
|
+
|
7
|
+
import (
|
8
|
+
"bytes"
|
9
|
+
"fmt"
|
10
|
+
"io"
|
11
|
+
"io/ioutil"
|
12
|
+
"strings"
|
13
|
+
"testing"
|
14
|
+
|
15
|
+
"golang.org/x/text/encoding"
|
16
|
+
"golang.org/x/text/encoding/internal/identifier"
|
17
|
+
"golang.org/x/text/transform"
|
18
|
+
)
|
19
|
+
|
20
|
+
// Encoder or Decoder
|
21
|
+
type Transcoder interface {
|
22
|
+
transform.Transformer
|
23
|
+
Bytes([]byte) ([]byte, error)
|
24
|
+
String(string) (string, error)
|
25
|
+
}
|
26
|
+
|
27
|
+
func TestEncoding(t *testing.T, e encoding.Encoding, encoded, utf8, prefix, suffix string) {
|
28
|
+
for _, direction := range []string{"Decode", "Encode"} {
|
29
|
+
t.Run(fmt.Sprintf("%v/%s", e, direction), func(t *testing.T) {
|
30
|
+
|
31
|
+
var coder Transcoder
|
32
|
+
var want, src, wPrefix, sPrefix, wSuffix, sSuffix string
|
33
|
+
if direction == "Decode" {
|
34
|
+
coder, want, src = e.NewDecoder(), utf8, encoded
|
35
|
+
wPrefix, sPrefix, wSuffix, sSuffix = "", prefix, "", suffix
|
36
|
+
} else {
|
37
|
+
coder, want, src = e.NewEncoder(), encoded, utf8
|
38
|
+
wPrefix, sPrefix, wSuffix, sSuffix = prefix, "", suffix, ""
|
39
|
+
}
|
40
|
+
|
41
|
+
dst := make([]byte, len(wPrefix)+len(want)+len(wSuffix))
|
42
|
+
nDst, nSrc, err := coder.Transform(dst, []byte(sPrefix+src+sSuffix), true)
|
43
|
+
if err != nil {
|
44
|
+
t.Fatal(err)
|
45
|
+
}
|
46
|
+
if nDst != len(wPrefix)+len(want)+len(wSuffix) {
|
47
|
+
t.Fatalf("nDst got %d, want %d",
|
48
|
+
nDst, len(wPrefix)+len(want)+len(wSuffix))
|
49
|
+
}
|
50
|
+
if nSrc != len(sPrefix)+len(src)+len(sSuffix) {
|
51
|
+
t.Fatalf("nSrc got %d, want %d",
|
52
|
+
nSrc, len(sPrefix)+len(src)+len(sSuffix))
|
53
|
+
}
|
54
|
+
if got := string(dst); got != wPrefix+want+wSuffix {
|
55
|
+
t.Fatalf("\ngot %q\nwant %q", got, wPrefix+want+wSuffix)
|
56
|
+
}
|
57
|
+
|
58
|
+
for _, n := range []int{0, 1, 2, 10, 123, 4567} {
|
59
|
+
input := sPrefix + strings.Repeat(src, n) + sSuffix
|
60
|
+
g, err := coder.String(input)
|
61
|
+
if err != nil {
|
62
|
+
t.Fatalf("Bytes: n=%d: %v", n, err)
|
63
|
+
}
|
64
|
+
if len(g) == 0 && len(input) == 0 {
|
65
|
+
// If the input is empty then the output can be empty,
|
66
|
+
// regardless of whatever wPrefix is.
|
67
|
+
continue
|
68
|
+
}
|
69
|
+
got1, want1 := string(g), wPrefix+strings.Repeat(want, n)+wSuffix
|
70
|
+
if got1 != want1 {
|
71
|
+
t.Fatalf("ReadAll: n=%d\ngot %q\nwant %q",
|
72
|
+
n, trim(got1), trim(want1))
|
73
|
+
}
|
74
|
+
}
|
75
|
+
})
|
76
|
+
}
|
77
|
+
}
|
78
|
+
|
79
|
+
func TestFile(t *testing.T, e encoding.Encoding) {
|
80
|
+
for _, dir := range []string{"Decode", "Encode"} {
|
81
|
+
t.Run(fmt.Sprintf("%s/%s", e, dir), func(t *testing.T) {
|
82
|
+
dst, src, transformer, err := load(dir, e)
|
83
|
+
if err != nil {
|
84
|
+
t.Fatalf("load: %v", err)
|
85
|
+
}
|
86
|
+
buf, err := transformer.Bytes(src)
|
87
|
+
if err != nil {
|
88
|
+
t.Fatalf("transform: %v", err)
|
89
|
+
}
|
90
|
+
if !bytes.Equal(buf, dst) {
|
91
|
+
t.Error("transformed bytes did not match golden file")
|
92
|
+
}
|
93
|
+
})
|
94
|
+
}
|
95
|
+
}
|
96
|
+
|
97
|
+
func Benchmark(b *testing.B, enc encoding.Encoding) {
|
98
|
+
for _, direction := range []string{"Decode", "Encode"} {
|
99
|
+
b.Run(fmt.Sprintf("%s/%s", enc, direction), func(b *testing.B) {
|
100
|
+
_, src, transformer, err := load(direction, enc)
|
101
|
+
if err != nil {
|
102
|
+
b.Fatal(err)
|
103
|
+
}
|
104
|
+
b.SetBytes(int64(len(src)))
|
105
|
+
b.ResetTimer()
|
106
|
+
for i := 0; i < b.N; i++ {
|
107
|
+
r := transform.NewReader(bytes.NewReader(src), transformer)
|
108
|
+
io.Copy(ioutil.Discard, r)
|
109
|
+
}
|
110
|
+
})
|
111
|
+
}
|
112
|
+
}
|
113
|
+
|
114
|
+
// testdataFiles are files in testdata/*.txt.
|
115
|
+
var testdataFiles = []struct {
|
116
|
+
mib identifier.MIB
|
117
|
+
basename, ext string
|
118
|
+
}{
|
119
|
+
{identifier.Windows1252, "candide", "windows-1252"},
|
120
|
+
{identifier.EUCPkdFmtJapanese, "rashomon", "euc-jp"},
|
121
|
+
{identifier.ISO2022JP, "rashomon", "iso-2022-jp"},
|
122
|
+
{identifier.ShiftJIS, "rashomon", "shift-jis"},
|
123
|
+
{identifier.EUCKR, "unsu-joh-eun-nal", "euc-kr"},
|
124
|
+
{identifier.GBK, "sunzi-bingfa-simplified", "gbk"},
|
125
|
+
{identifier.HZGB2312, "sunzi-bingfa-gb-levels-1-and-2", "hz-gb2312"},
|
126
|
+
{identifier.Big5, "sunzi-bingfa-traditional", "big5"},
|
127
|
+
{identifier.UTF16LE, "candide", "utf-16le"},
|
128
|
+
{identifier.UTF8, "candide", "utf-8"},
|
129
|
+
{identifier.UTF32BE, "candide", "utf-32be"},
|
130
|
+
|
131
|
+
// GB18030 is a superset of GBK and is nominally a Simplified Chinese
|
132
|
+
// encoding, but it can also represent the entire Basic Multilingual
|
133
|
+
// Plane, including codepoints like 'â' that aren't encodable by GBK.
|
134
|
+
// GB18030 on Simplified Chinese should perform similarly to GBK on
|
135
|
+
// Simplified Chinese. GB18030 on "candide" is more interesting.
|
136
|
+
{identifier.GB18030, "candide", "gb18030"},
|
137
|
+
}
|
138
|
+
|
139
|
+
func load(direction string, enc encoding.Encoding) ([]byte, []byte, Transcoder, error) {
|
140
|
+
basename, ext, count := "", "", 0
|
141
|
+
for _, tf := range testdataFiles {
|
142
|
+
if mib, _ := enc.(identifier.Interface).ID(); tf.mib == mib {
|
143
|
+
basename, ext = tf.basename, tf.ext
|
144
|
+
count++
|
145
|
+
}
|
146
|
+
}
|
147
|
+
if count != 1 {
|
148
|
+
if count == 0 {
|
149
|
+
return nil, nil, nil, fmt.Errorf("no testdataFiles for %s", enc)
|
150
|
+
}
|
151
|
+
return nil, nil, nil, fmt.Errorf("too many testdataFiles for %s", enc)
|
152
|
+
}
|
153
|
+
dstFile := fmt.Sprintf("../testdata/%s-%s.txt", basename, ext)
|
154
|
+
srcFile := fmt.Sprintf("../testdata/%s-utf-8.txt", basename)
|
155
|
+
var coder Transcoder = encoding.ReplaceUnsupported(enc.NewEncoder())
|
156
|
+
if direction == "Decode" {
|
157
|
+
dstFile, srcFile = srcFile, dstFile
|
158
|
+
coder = enc.NewDecoder()
|
159
|
+
}
|
160
|
+
dst, err := ioutil.ReadFile(dstFile)
|
161
|
+
if err != nil {
|
162
|
+
if dst, err = ioutil.ReadFile("../" + dstFile); err != nil {
|
163
|
+
return nil, nil, nil, err
|
164
|
+
}
|
165
|
+
}
|
166
|
+
src, err := ioutil.ReadFile(srcFile)
|
167
|
+
if err != nil {
|
168
|
+
if src, err = ioutil.ReadFile("../" + srcFile); err != nil {
|
169
|
+
return nil, nil, nil, err
|
170
|
+
}
|
171
|
+
}
|
172
|
+
return dst, src, coder, nil
|
173
|
+
}
|
174
|
+
|
175
|
+
func trim(s string) string {
|
176
|
+
if len(s) < 120 {
|
177
|
+
return s
|
178
|
+
}
|
179
|
+
return s[:50] + "..." + s[len(s)-50:]
|
180
|
+
}
|
@@ -0,0 +1,137 @@
|
|
1
|
+
// Copyright 2015 The Go Authors. All rights reserved.
|
2
|
+
// Use of this source code is governed by a BSD-style
|
3
|
+
// license that can be found in the LICENSE file.
|
4
|
+
|
5
|
+
// +build ignore
|
6
|
+
|
7
|
+
package main
|
8
|
+
|
9
|
+
import (
|
10
|
+
"bytes"
|
11
|
+
"encoding/xml"
|
12
|
+
"fmt"
|
13
|
+
"io"
|
14
|
+
"log"
|
15
|
+
"strings"
|
16
|
+
|
17
|
+
"golang.org/x/text/internal/gen"
|
18
|
+
)
|
19
|
+
|
20
|
+
type registry struct {
|
21
|
+
XMLName xml.Name `xml:"registry"`
|
22
|
+
Updated string `xml:"updated"`
|
23
|
+
Registry []struct {
|
24
|
+
ID string `xml:"id,attr"`
|
25
|
+
Record []struct {
|
26
|
+
Name string `xml:"name"`
|
27
|
+
Xref []struct {
|
28
|
+
Type string `xml:"type,attr"`
|
29
|
+
Data string `xml:"data,attr"`
|
30
|
+
} `xml:"xref"`
|
31
|
+
Desc struct {
|
32
|
+
Data string `xml:",innerxml"`
|
33
|
+
// Any []struct {
|
34
|
+
// Data string `xml:",chardata"`
|
35
|
+
// } `xml:",any"`
|
36
|
+
// Data string `xml:",chardata"`
|
37
|
+
} `xml:"description,"`
|
38
|
+
MIB string `xml:"value"`
|
39
|
+
Alias []string `xml:"alias"`
|
40
|
+
MIME string `xml:"preferred_alias"`
|
41
|
+
} `xml:"record"`
|
42
|
+
} `xml:"registry"`
|
43
|
+
}
|
44
|
+
|
45
|
+
func main() {
|
46
|
+
r := gen.OpenIANAFile("assignments/character-sets/character-sets.xml")
|
47
|
+
reg := ®istry{}
|
48
|
+
if err := xml.NewDecoder(r).Decode(®); err != nil && err != io.EOF {
|
49
|
+
log.Fatalf("Error decoding charset registry: %v", err)
|
50
|
+
}
|
51
|
+
if len(reg.Registry) == 0 || reg.Registry[0].ID != "character-sets-1" {
|
52
|
+
log.Fatalf("Unexpected ID %s", reg.Registry[0].ID)
|
53
|
+
}
|
54
|
+
|
55
|
+
w := &bytes.Buffer{}
|
56
|
+
fmt.Fprintf(w, "const (\n")
|
57
|
+
for _, rec := range reg.Registry[0].Record {
|
58
|
+
constName := ""
|
59
|
+
for _, a := range rec.Alias {
|
60
|
+
if strings.HasPrefix(a, "cs") && strings.IndexByte(a, '-') == -1 {
|
61
|
+
// Some of the constant definitions have comments in them. Strip those.
|
62
|
+
constName = strings.Title(strings.SplitN(a[2:], "\n", 2)[0])
|
63
|
+
}
|
64
|
+
}
|
65
|
+
if constName == "" {
|
66
|
+
switch rec.MIB {
|
67
|
+
case "2085":
|
68
|
+
constName = "HZGB2312" // Not listed as alias for some reason.
|
69
|
+
default:
|
70
|
+
log.Fatalf("No cs alias defined for %s.", rec.MIB)
|
71
|
+
}
|
72
|
+
}
|
73
|
+
if rec.MIME != "" {
|
74
|
+
rec.MIME = fmt.Sprintf(" (MIME: %s)", rec.MIME)
|
75
|
+
}
|
76
|
+
fmt.Fprintf(w, "// %s is the MIB identifier with IANA name %s%s.\n//\n", constName, rec.Name, rec.MIME)
|
77
|
+
if len(rec.Desc.Data) > 0 {
|
78
|
+
fmt.Fprint(w, "// ")
|
79
|
+
d := xml.NewDecoder(strings.NewReader(rec.Desc.Data))
|
80
|
+
inElem := true
|
81
|
+
attr := ""
|
82
|
+
for {
|
83
|
+
t, err := d.Token()
|
84
|
+
if err != nil {
|
85
|
+
if err != io.EOF {
|
86
|
+
log.Fatal(err)
|
87
|
+
}
|
88
|
+
break
|
89
|
+
}
|
90
|
+
switch x := t.(type) {
|
91
|
+
case xml.CharData:
|
92
|
+
attr = "" // Don't need attribute info.
|
93
|
+
a := bytes.Split([]byte(x), []byte("\n"))
|
94
|
+
for i, b := range a {
|
95
|
+
if b = bytes.TrimSpace(b); len(b) != 0 {
|
96
|
+
if !inElem && i > 0 {
|
97
|
+
fmt.Fprint(w, "\n// ")
|
98
|
+
}
|
99
|
+
inElem = false
|
100
|
+
fmt.Fprintf(w, "%s ", string(b))
|
101
|
+
}
|
102
|
+
}
|
103
|
+
case xml.StartElement:
|
104
|
+
if x.Name.Local == "xref" {
|
105
|
+
inElem = true
|
106
|
+
use := false
|
107
|
+
for _, a := range x.Attr {
|
108
|
+
if a.Name.Local == "type" {
|
109
|
+
use = use || a.Value != "person"
|
110
|
+
}
|
111
|
+
if a.Name.Local == "data" && use {
|
112
|
+
attr = a.Value + " "
|
113
|
+
}
|
114
|
+
}
|
115
|
+
}
|
116
|
+
case xml.EndElement:
|
117
|
+
inElem = false
|
118
|
+
fmt.Fprint(w, attr)
|
119
|
+
}
|
120
|
+
}
|
121
|
+
fmt.Fprint(w, "\n")
|
122
|
+
}
|
123
|
+
for _, x := range rec.Xref {
|
124
|
+
switch x.Type {
|
125
|
+
case "rfc":
|
126
|
+
fmt.Fprintf(w, "// Reference: %s\n", strings.ToUpper(x.Data))
|
127
|
+
case "uri":
|
128
|
+
fmt.Fprintf(w, "// Reference: %s\n", x.Data)
|
129
|
+
}
|
130
|
+
}
|
131
|
+
fmt.Fprintf(w, "%s MIB = %s\n", constName, rec.MIB)
|
132
|
+
fmt.Fprintln(w)
|
133
|
+
}
|
134
|
+
fmt.Fprintln(w, ")")
|
135
|
+
|
136
|
+
gen.WriteGoFile("mib.go", "identifier", w.Bytes())
|
137
|
+
}
|
@@ -0,0 +1,81 @@
|
|
1
|
+
// Copyright 2015 The Go Authors. All rights reserved.
|
2
|
+
// Use of this source code is governed by a BSD-style
|
3
|
+
// license that can be found in the LICENSE file.
|
4
|
+
|
5
|
+
//go:generate go run gen.go
|
6
|
+
|
7
|
+
// Package identifier defines the contract between implementations of Encoding
|
8
|
+
// and Index by defining identifiers that uniquely identify standardized coded
|
9
|
+
// character sets (CCS) and character encoding schemes (CES), which we will
|
10
|
+
// together refer to as encodings, for which Encoding implementations provide
|
11
|
+
// converters to and from UTF-8. This package is typically only of concern to
|
12
|
+
// implementers of Indexes and Encodings.
|
13
|
+
//
|
14
|
+
// One part of the identifier is the MIB code, which is defined by IANA and
|
15
|
+
// uniquely identifies a CCS or CES. Each code is associated with data that
|
16
|
+
// references authorities, official documentation as well as aliases and MIME
|
17
|
+
// names.
|
18
|
+
//
|
19
|
+
// Not all CESs are covered by the IANA registry. The "other" string that is
|
20
|
+
// returned by ID can be used to identify other character sets or versions of
|
21
|
+
// existing ones.
|
22
|
+
//
|
23
|
+
// It is recommended that each package that provides a set of Encodings provide
|
24
|
+
// the All and Common variables to reference all supported encodings and
|
25
|
+
// commonly used subset. This allows Index implementations to include all
|
26
|
+
// available encodings without explicitly referencing or knowing about them.
|
27
|
+
package identifier
|
28
|
+
|
29
|
+
// Note: this package is internal, but could be made public if there is a need
|
30
|
+
// for writing third-party Indexes and Encodings.
|
31
|
+
|
32
|
+
// References:
|
33
|
+
// - http://source.icu-project.org/repos/icu/icu/trunk/source/data/mappings/convrtrs.txt
|
34
|
+
// - http://www.iana.org/assignments/character-sets/character-sets.xhtml
|
35
|
+
// - http://www.iana.org/assignments/ianacharset-mib/ianacharset-mib
|
36
|
+
// - http://www.ietf.org/rfc/rfc2978.txt
|
37
|
+
// - http://www.unicode.org/reports/tr22/
|
38
|
+
// - http://www.w3.org/TR/encoding/
|
39
|
+
// - https://encoding.spec.whatwg.org/
|
40
|
+
// - https://encoding.spec.whatwg.org/encodings.json
|
41
|
+
// - https://tools.ietf.org/html/rfc6657#section-5
|
42
|
+
|
43
|
+
// Interface can be implemented by Encodings to define the CCS or CES for which
|
44
|
+
// it implements conversions.
|
45
|
+
type Interface interface {
|
46
|
+
// ID returns an encoding identifier. Exactly one of the mib and other
|
47
|
+
// values should be non-zero.
|
48
|
+
//
|
49
|
+
// In the usual case it is only necessary to indicate the MIB code. The
|
50
|
+
// other string can be used to specify encodings for which there is no MIB,
|
51
|
+
// such as "x-mac-dingbat".
|
52
|
+
//
|
53
|
+
// The other string may only contain the characters a-z, A-Z, 0-9, - and _.
|
54
|
+
ID() (mib MIB, other string)
|
55
|
+
|
56
|
+
// NOTE: the restrictions on the encoding are to allow extending the syntax
|
57
|
+
// with additional information such as versions, vendors and other variants.
|
58
|
+
}
|
59
|
+
|
60
|
+
// A MIB identifies an encoding. It is derived from the IANA MIB codes and adds
|
61
|
+
// some identifiers for some encodings that are not covered by the IANA
|
62
|
+
// standard.
|
63
|
+
//
|
64
|
+
// See http://www.iana.org/assignments/ianacharset-mib.
|
65
|
+
type MIB uint16
|
66
|
+
|
67
|
+
// These additional MIB types are not defined in IANA. They are added because
|
68
|
+
// they are common and defined within the text repo.
|
69
|
+
const (
|
70
|
+
// Unofficial marks the start of encodings not registered by IANA.
|
71
|
+
Unofficial MIB = 10000 + iota
|
72
|
+
|
73
|
+
// Replacement is the WhatWG replacement encoding.
|
74
|
+
Replacement
|
75
|
+
|
76
|
+
// XUserDefined is the code for x-user-defined.
|
77
|
+
XUserDefined
|
78
|
+
|
79
|
+
// MacintoshCyrillic is the code for x-mac-cyrillic.
|
80
|
+
MacintoshCyrillic
|
81
|
+
)
|
@@ -0,0 +1,1621 @@
|
|
1
|
+
// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT.
|
2
|
+
|
3
|
+
package identifier
|
4
|
+
|
5
|
+
const (
|
6
|
+
// ASCII is the MIB identifier with IANA name US-ASCII (MIME: US-ASCII).
|
7
|
+
//
|
8
|
+
// ANSI X3.4-1986
|
9
|
+
// Reference: RFC2046
|
10
|
+
ASCII MIB = 3
|
11
|
+
|
12
|
+
// ISOLatin1 is the MIB identifier with IANA name ISO_8859-1:1987 (MIME: ISO-8859-1).
|
13
|
+
//
|
14
|
+
// ISO-IR: International Register of Escape Sequences
|
15
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
16
|
+
// Reference: RFC1345
|
17
|
+
ISOLatin1 MIB = 4
|
18
|
+
|
19
|
+
// ISOLatin2 is the MIB identifier with IANA name ISO_8859-2:1987 (MIME: ISO-8859-2).
|
20
|
+
//
|
21
|
+
// ISO-IR: International Register of Escape Sequences
|
22
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
23
|
+
// Reference: RFC1345
|
24
|
+
ISOLatin2 MIB = 5
|
25
|
+
|
26
|
+
// ISOLatin3 is the MIB identifier with IANA name ISO_8859-3:1988 (MIME: ISO-8859-3).
|
27
|
+
//
|
28
|
+
// ISO-IR: International Register of Escape Sequences
|
29
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
30
|
+
// Reference: RFC1345
|
31
|
+
ISOLatin3 MIB = 6
|
32
|
+
|
33
|
+
// ISOLatin4 is the MIB identifier with IANA name ISO_8859-4:1988 (MIME: ISO-8859-4).
|
34
|
+
//
|
35
|
+
// ISO-IR: International Register of Escape Sequences
|
36
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
37
|
+
// Reference: RFC1345
|
38
|
+
ISOLatin4 MIB = 7
|
39
|
+
|
40
|
+
// ISOLatinCyrillic is the MIB identifier with IANA name ISO_8859-5:1988 (MIME: ISO-8859-5).
|
41
|
+
//
|
42
|
+
// ISO-IR: International Register of Escape Sequences
|
43
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
44
|
+
// Reference: RFC1345
|
45
|
+
ISOLatinCyrillic MIB = 8
|
46
|
+
|
47
|
+
// ISOLatinArabic is the MIB identifier with IANA name ISO_8859-6:1987 (MIME: ISO-8859-6).
|
48
|
+
//
|
49
|
+
// ISO-IR: International Register of Escape Sequences
|
50
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
51
|
+
// Reference: RFC1345
|
52
|
+
ISOLatinArabic MIB = 9
|
53
|
+
|
54
|
+
// ISOLatinGreek is the MIB identifier with IANA name ISO_8859-7:1987 (MIME: ISO-8859-7).
|
55
|
+
//
|
56
|
+
// ISO-IR: International Register of Escape Sequences
|
57
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
58
|
+
// Reference: RFC1947
|
59
|
+
// Reference: RFC1345
|
60
|
+
ISOLatinGreek MIB = 10
|
61
|
+
|
62
|
+
// ISOLatinHebrew is the MIB identifier with IANA name ISO_8859-8:1988 (MIME: ISO-8859-8).
|
63
|
+
//
|
64
|
+
// ISO-IR: International Register of Escape Sequences
|
65
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
66
|
+
// Reference: RFC1345
|
67
|
+
ISOLatinHebrew MIB = 11
|
68
|
+
|
69
|
+
// ISOLatin5 is the MIB identifier with IANA name ISO_8859-9:1989 (MIME: ISO-8859-9).
|
70
|
+
//
|
71
|
+
// ISO-IR: International Register of Escape Sequences
|
72
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
73
|
+
// Reference: RFC1345
|
74
|
+
ISOLatin5 MIB = 12
|
75
|
+
|
76
|
+
// ISOLatin6 is the MIB identifier with IANA name ISO-8859-10 (MIME: ISO-8859-10).
|
77
|
+
//
|
78
|
+
// ISO-IR: International Register of Escape Sequences
|
79
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
80
|
+
// Reference: RFC1345
|
81
|
+
ISOLatin6 MIB = 13
|
82
|
+
|
83
|
+
// ISOTextComm is the MIB identifier with IANA name ISO_6937-2-add.
|
84
|
+
//
|
85
|
+
// ISO-IR: International Register of Escape Sequences and ISO 6937-2:1983
|
86
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
87
|
+
// Reference: RFC1345
|
88
|
+
ISOTextComm MIB = 14
|
89
|
+
|
90
|
+
// HalfWidthKatakana is the MIB identifier with IANA name JIS_X0201.
|
91
|
+
//
|
92
|
+
// JIS X 0201-1976. One byte only, this is equivalent to
|
93
|
+
// JIS/Roman (similar to ASCII) plus eight-bit half-width
|
94
|
+
// Katakana
|
95
|
+
// Reference: RFC1345
|
96
|
+
HalfWidthKatakana MIB = 15
|
97
|
+
|
98
|
+
// JISEncoding is the MIB identifier with IANA name JIS_Encoding.
|
99
|
+
//
|
100
|
+
// JIS X 0202-1991. Uses ISO 2022 escape sequences to
|
101
|
+
// shift code sets as documented in JIS X 0202-1991.
|
102
|
+
JISEncoding MIB = 16
|
103
|
+
|
104
|
+
// ShiftJIS is the MIB identifier with IANA name Shift_JIS (MIME: Shift_JIS).
|
105
|
+
//
|
106
|
+
// This charset is an extension of csHalfWidthKatakana by
|
107
|
+
// adding graphic characters in JIS X 0208. The CCS's are
|
108
|
+
// JIS X0201:1997 and JIS X0208:1997. The
|
109
|
+
// complete definition is shown in Appendix 1 of JIS
|
110
|
+
// X0208:1997.
|
111
|
+
// This charset can be used for the top-level media type "text".
|
112
|
+
ShiftJIS MIB = 17
|
113
|
+
|
114
|
+
// EUCPkdFmtJapanese is the MIB identifier with IANA name Extended_UNIX_Code_Packed_Format_for_Japanese (MIME: EUC-JP).
|
115
|
+
//
|
116
|
+
// Standardized by OSF, UNIX International, and UNIX Systems
|
117
|
+
// Laboratories Pacific. Uses ISO 2022 rules to select
|
118
|
+
// code set 0: US-ASCII (a single 7-bit byte set)
|
119
|
+
// code set 1: JIS X0208-1990 (a double 8-bit byte set)
|
120
|
+
// restricted to A0-FF in both bytes
|
121
|
+
// code set 2: Half Width Katakana (a single 7-bit byte set)
|
122
|
+
// requiring SS2 as the character prefix
|
123
|
+
// code set 3: JIS X0212-1990 (a double 7-bit byte set)
|
124
|
+
// restricted to A0-FF in both bytes
|
125
|
+
// requiring SS3 as the character prefix
|
126
|
+
EUCPkdFmtJapanese MIB = 18
|
127
|
+
|
128
|
+
// EUCFixWidJapanese is the MIB identifier with IANA name Extended_UNIX_Code_Fixed_Width_for_Japanese.
|
129
|
+
//
|
130
|
+
// Used in Japan. Each character is 2 octets.
|
131
|
+
// code set 0: US-ASCII (a single 7-bit byte set)
|
132
|
+
// 1st byte = 00
|
133
|
+
// 2nd byte = 20-7E
|
134
|
+
// code set 1: JIS X0208-1990 (a double 7-bit byte set)
|
135
|
+
// restricted to A0-FF in both bytes
|
136
|
+
// code set 2: Half Width Katakana (a single 7-bit byte set)
|
137
|
+
// 1st byte = 00
|
138
|
+
// 2nd byte = A0-FF
|
139
|
+
// code set 3: JIS X0212-1990 (a double 7-bit byte set)
|
140
|
+
// restricted to A0-FF in
|
141
|
+
// the first byte
|
142
|
+
// and 21-7E in the second byte
|
143
|
+
EUCFixWidJapanese MIB = 19
|
144
|
+
|
145
|
+
// ISO4UnitedKingdom is the MIB identifier with IANA name BS_4730.
|
146
|
+
//
|
147
|
+
// ISO-IR: International Register of Escape Sequences
|
148
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
149
|
+
// Reference: RFC1345
|
150
|
+
ISO4UnitedKingdom MIB = 20
|
151
|
+
|
152
|
+
// ISO11SwedishForNames is the MIB identifier with IANA name SEN_850200_C.
|
153
|
+
//
|
154
|
+
// ISO-IR: International Register of Escape Sequences
|
155
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
156
|
+
// Reference: RFC1345
|
157
|
+
ISO11SwedishForNames MIB = 21
|
158
|
+
|
159
|
+
// ISO15Italian is the MIB identifier with IANA name IT.
|
160
|
+
//
|
161
|
+
// ISO-IR: International Register of Escape Sequences
|
162
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
163
|
+
// Reference: RFC1345
|
164
|
+
ISO15Italian MIB = 22
|
165
|
+
|
166
|
+
// ISO17Spanish is the MIB identifier with IANA name ES.
|
167
|
+
//
|
168
|
+
// ISO-IR: International Register of Escape Sequences
|
169
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
170
|
+
// Reference: RFC1345
|
171
|
+
ISO17Spanish MIB = 23
|
172
|
+
|
173
|
+
// ISO21German is the MIB identifier with IANA name DIN_66003.
|
174
|
+
//
|
175
|
+
// ISO-IR: International Register of Escape Sequences
|
176
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
177
|
+
// Reference: RFC1345
|
178
|
+
ISO21German MIB = 24
|
179
|
+
|
180
|
+
// ISO60Norwegian1 is the MIB identifier with IANA name NS_4551-1.
|
181
|
+
//
|
182
|
+
// ISO-IR: International Register of Escape Sequences
|
183
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
184
|
+
// Reference: RFC1345
|
185
|
+
ISO60Norwegian1 MIB = 25
|
186
|
+
|
187
|
+
// ISO69French is the MIB identifier with IANA name NF_Z_62-010.
|
188
|
+
//
|
189
|
+
// ISO-IR: International Register of Escape Sequences
|
190
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
191
|
+
// Reference: RFC1345
|
192
|
+
ISO69French MIB = 26
|
193
|
+
|
194
|
+
// ISO10646UTF1 is the MIB identifier with IANA name ISO-10646-UTF-1.
|
195
|
+
//
|
196
|
+
// Universal Transfer Format (1), this is the multibyte
|
197
|
+
// encoding, that subsets ASCII-7. It does not have byte
|
198
|
+
// ordering issues.
|
199
|
+
ISO10646UTF1 MIB = 27
|
200
|
+
|
201
|
+
// ISO646basic1983 is the MIB identifier with IANA name ISO_646.basic:1983.
|
202
|
+
//
|
203
|
+
// ISO-IR: International Register of Escape Sequences
|
204
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
205
|
+
// Reference: RFC1345
|
206
|
+
ISO646basic1983 MIB = 28
|
207
|
+
|
208
|
+
// INVARIANT is the MIB identifier with IANA name INVARIANT.
|
209
|
+
//
|
210
|
+
// Reference: RFC1345
|
211
|
+
INVARIANT MIB = 29
|
212
|
+
|
213
|
+
// ISO2IntlRefVersion is the MIB identifier with IANA name ISO_646.irv:1983.
|
214
|
+
//
|
215
|
+
// ISO-IR: International Register of Escape Sequences
|
216
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
217
|
+
// Reference: RFC1345
|
218
|
+
ISO2IntlRefVersion MIB = 30
|
219
|
+
|
220
|
+
// NATSSEFI is the MIB identifier with IANA name NATS-SEFI.
|
221
|
+
//
|
222
|
+
// ISO-IR: International Register of Escape Sequences
|
223
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
224
|
+
// Reference: RFC1345
|
225
|
+
NATSSEFI MIB = 31
|
226
|
+
|
227
|
+
// NATSSEFIADD is the MIB identifier with IANA name NATS-SEFI-ADD.
|
228
|
+
//
|
229
|
+
// ISO-IR: International Register of Escape Sequences
|
230
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
231
|
+
// Reference: RFC1345
|
232
|
+
NATSSEFIADD MIB = 32
|
233
|
+
|
234
|
+
// NATSDANO is the MIB identifier with IANA name NATS-DANO.
|
235
|
+
//
|
236
|
+
// ISO-IR: International Register of Escape Sequences
|
237
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
238
|
+
// Reference: RFC1345
|
239
|
+
NATSDANO MIB = 33
|
240
|
+
|
241
|
+
// NATSDANOADD is the MIB identifier with IANA name NATS-DANO-ADD.
|
242
|
+
//
|
243
|
+
// ISO-IR: International Register of Escape Sequences
|
244
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
245
|
+
// Reference: RFC1345
|
246
|
+
NATSDANOADD MIB = 34
|
247
|
+
|
248
|
+
// ISO10Swedish is the MIB identifier with IANA name SEN_850200_B.
|
249
|
+
//
|
250
|
+
// ISO-IR: International Register of Escape Sequences
|
251
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
252
|
+
// Reference: RFC1345
|
253
|
+
ISO10Swedish MIB = 35
|
254
|
+
|
255
|
+
// KSC56011987 is the MIB identifier with IANA name KS_C_5601-1987.
|
256
|
+
//
|
257
|
+
// ISO-IR: International Register of Escape Sequences
|
258
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
259
|
+
// Reference: RFC1345
|
260
|
+
KSC56011987 MIB = 36
|
261
|
+
|
262
|
+
// ISO2022KR is the MIB identifier with IANA name ISO-2022-KR (MIME: ISO-2022-KR).
|
263
|
+
//
|
264
|
+
// rfc1557 (see also KS_C_5601-1987)
|
265
|
+
// Reference: RFC1557
|
266
|
+
ISO2022KR MIB = 37
|
267
|
+
|
268
|
+
// EUCKR is the MIB identifier with IANA name EUC-KR (MIME: EUC-KR).
|
269
|
+
//
|
270
|
+
// rfc1557 (see also KS_C_5861-1992)
|
271
|
+
// Reference: RFC1557
|
272
|
+
EUCKR MIB = 38
|
273
|
+
|
274
|
+
// ISO2022JP is the MIB identifier with IANA name ISO-2022-JP (MIME: ISO-2022-JP).
|
275
|
+
//
|
276
|
+
// rfc1468 (see also rfc2237 )
|
277
|
+
// Reference: RFC1468
|
278
|
+
ISO2022JP MIB = 39
|
279
|
+
|
280
|
+
// ISO2022JP2 is the MIB identifier with IANA name ISO-2022-JP-2 (MIME: ISO-2022-JP-2).
|
281
|
+
//
|
282
|
+
// rfc1554
|
283
|
+
// Reference: RFC1554
|
284
|
+
ISO2022JP2 MIB = 40
|
285
|
+
|
286
|
+
// ISO13JISC6220jp is the MIB identifier with IANA name JIS_C6220-1969-jp.
|
287
|
+
//
|
288
|
+
// ISO-IR: International Register of Escape Sequences
|
289
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
290
|
+
// Reference: RFC1345
|
291
|
+
ISO13JISC6220jp MIB = 41
|
292
|
+
|
293
|
+
// ISO14JISC6220ro is the MIB identifier with IANA name JIS_C6220-1969-ro.
|
294
|
+
//
|
295
|
+
// ISO-IR: International Register of Escape Sequences
|
296
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
297
|
+
// Reference: RFC1345
|
298
|
+
ISO14JISC6220ro MIB = 42
|
299
|
+
|
300
|
+
// ISO16Portuguese is the MIB identifier with IANA name PT.
|
301
|
+
//
|
302
|
+
// ISO-IR: International Register of Escape Sequences
|
303
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
304
|
+
// Reference: RFC1345
|
305
|
+
ISO16Portuguese MIB = 43
|
306
|
+
|
307
|
+
// ISO18Greek7Old is the MIB identifier with IANA name greek7-old.
|
308
|
+
//
|
309
|
+
// ISO-IR: International Register of Escape Sequences
|
310
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
311
|
+
// Reference: RFC1345
|
312
|
+
ISO18Greek7Old MIB = 44
|
313
|
+
|
314
|
+
// ISO19LatinGreek is the MIB identifier with IANA name latin-greek.
|
315
|
+
//
|
316
|
+
// ISO-IR: International Register of Escape Sequences
|
317
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
318
|
+
// Reference: RFC1345
|
319
|
+
ISO19LatinGreek MIB = 45
|
320
|
+
|
321
|
+
// ISO25French is the MIB identifier with IANA name NF_Z_62-010_(1973).
|
322
|
+
//
|
323
|
+
// ISO-IR: International Register of Escape Sequences
|
324
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
325
|
+
// Reference: RFC1345
|
326
|
+
ISO25French MIB = 46
|
327
|
+
|
328
|
+
// ISO27LatinGreek1 is the MIB identifier with IANA name Latin-greek-1.
|
329
|
+
//
|
330
|
+
// ISO-IR: International Register of Escape Sequences
|
331
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
332
|
+
// Reference: RFC1345
|
333
|
+
ISO27LatinGreek1 MIB = 47
|
334
|
+
|
335
|
+
// ISO5427Cyrillic is the MIB identifier with IANA name ISO_5427.
|
336
|
+
//
|
337
|
+
// ISO-IR: International Register of Escape Sequences
|
338
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
339
|
+
// Reference: RFC1345
|
340
|
+
ISO5427Cyrillic MIB = 48
|
341
|
+
|
342
|
+
// ISO42JISC62261978 is the MIB identifier with IANA name JIS_C6226-1978.
|
343
|
+
//
|
344
|
+
// ISO-IR: International Register of Escape Sequences
|
345
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
346
|
+
// Reference: RFC1345
|
347
|
+
ISO42JISC62261978 MIB = 49
|
348
|
+
|
349
|
+
// ISO47BSViewdata is the MIB identifier with IANA name BS_viewdata.
|
350
|
+
//
|
351
|
+
// ISO-IR: International Register of Escape Sequences
|
352
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
353
|
+
// Reference: RFC1345
|
354
|
+
ISO47BSViewdata MIB = 50
|
355
|
+
|
356
|
+
// ISO49INIS is the MIB identifier with IANA name INIS.
|
357
|
+
//
|
358
|
+
// ISO-IR: International Register of Escape Sequences
|
359
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
360
|
+
// Reference: RFC1345
|
361
|
+
ISO49INIS MIB = 51
|
362
|
+
|
363
|
+
// ISO50INIS8 is the MIB identifier with IANA name INIS-8.
|
364
|
+
//
|
365
|
+
// ISO-IR: International Register of Escape Sequences
|
366
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
367
|
+
// Reference: RFC1345
|
368
|
+
ISO50INIS8 MIB = 52
|
369
|
+
|
370
|
+
// ISO51INISCyrillic is the MIB identifier with IANA name INIS-cyrillic.
|
371
|
+
//
|
372
|
+
// ISO-IR: International Register of Escape Sequences
|
373
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
374
|
+
// Reference: RFC1345
|
375
|
+
ISO51INISCyrillic MIB = 53
|
376
|
+
|
377
|
+
// ISO54271981 is the MIB identifier with IANA name ISO_5427:1981.
|
378
|
+
//
|
379
|
+
// ISO-IR: International Register of Escape Sequences
|
380
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
381
|
+
// Reference: RFC1345
|
382
|
+
ISO54271981 MIB = 54
|
383
|
+
|
384
|
+
// ISO5428Greek is the MIB identifier with IANA name ISO_5428:1980.
|
385
|
+
//
|
386
|
+
// ISO-IR: International Register of Escape Sequences
|
387
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
388
|
+
// Reference: RFC1345
|
389
|
+
ISO5428Greek MIB = 55
|
390
|
+
|
391
|
+
// ISO57GB1988 is the MIB identifier with IANA name GB_1988-80.
|
392
|
+
//
|
393
|
+
// ISO-IR: International Register of Escape Sequences
|
394
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
395
|
+
// Reference: RFC1345
|
396
|
+
ISO57GB1988 MIB = 56
|
397
|
+
|
398
|
+
// ISO58GB231280 is the MIB identifier with IANA name GB_2312-80.
|
399
|
+
//
|
400
|
+
// ISO-IR: International Register of Escape Sequences
|
401
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
402
|
+
// Reference: RFC1345
|
403
|
+
ISO58GB231280 MIB = 57
|
404
|
+
|
405
|
+
// ISO61Norwegian2 is the MIB identifier with IANA name NS_4551-2.
|
406
|
+
//
|
407
|
+
// ISO-IR: International Register of Escape Sequences
|
408
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
409
|
+
// Reference: RFC1345
|
410
|
+
ISO61Norwegian2 MIB = 58
|
411
|
+
|
412
|
+
// ISO70VideotexSupp1 is the MIB identifier with IANA name videotex-suppl.
|
413
|
+
//
|
414
|
+
// ISO-IR: International Register of Escape Sequences
|
415
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
416
|
+
// Reference: RFC1345
|
417
|
+
ISO70VideotexSupp1 MIB = 59
|
418
|
+
|
419
|
+
// ISO84Portuguese2 is the MIB identifier with IANA name PT2.
|
420
|
+
//
|
421
|
+
// ISO-IR: International Register of Escape Sequences
|
422
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
423
|
+
// Reference: RFC1345
|
424
|
+
ISO84Portuguese2 MIB = 60
|
425
|
+
|
426
|
+
// ISO85Spanish2 is the MIB identifier with IANA name ES2.
|
427
|
+
//
|
428
|
+
// ISO-IR: International Register of Escape Sequences
|
429
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
430
|
+
// Reference: RFC1345
|
431
|
+
ISO85Spanish2 MIB = 61
|
432
|
+
|
433
|
+
// ISO86Hungarian is the MIB identifier with IANA name MSZ_7795.3.
|
434
|
+
//
|
435
|
+
// ISO-IR: International Register of Escape Sequences
|
436
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
437
|
+
// Reference: RFC1345
|
438
|
+
ISO86Hungarian MIB = 62
|
439
|
+
|
440
|
+
// ISO87JISX0208 is the MIB identifier with IANA name JIS_C6226-1983.
|
441
|
+
//
|
442
|
+
// ISO-IR: International Register of Escape Sequences
|
443
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
444
|
+
// Reference: RFC1345
|
445
|
+
ISO87JISX0208 MIB = 63
|
446
|
+
|
447
|
+
// ISO88Greek7 is the MIB identifier with IANA name greek7.
|
448
|
+
//
|
449
|
+
// ISO-IR: International Register of Escape Sequences
|
450
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
451
|
+
// Reference: RFC1345
|
452
|
+
ISO88Greek7 MIB = 64
|
453
|
+
|
454
|
+
// ISO89ASMO449 is the MIB identifier with IANA name ASMO_449.
|
455
|
+
//
|
456
|
+
// ISO-IR: International Register of Escape Sequences
|
457
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
458
|
+
// Reference: RFC1345
|
459
|
+
ISO89ASMO449 MIB = 65
|
460
|
+
|
461
|
+
// ISO90 is the MIB identifier with IANA name iso-ir-90.
|
462
|
+
//
|
463
|
+
// ISO-IR: International Register of Escape Sequences
|
464
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
465
|
+
// Reference: RFC1345
|
466
|
+
ISO90 MIB = 66
|
467
|
+
|
468
|
+
// ISO91JISC62291984a is the MIB identifier with IANA name JIS_C6229-1984-a.
|
469
|
+
//
|
470
|
+
// ISO-IR: International Register of Escape Sequences
|
471
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
472
|
+
// Reference: RFC1345
|
473
|
+
ISO91JISC62291984a MIB = 67
|
474
|
+
|
475
|
+
// ISO92JISC62991984b is the MIB identifier with IANA name JIS_C6229-1984-b.
|
476
|
+
//
|
477
|
+
// ISO-IR: International Register of Escape Sequences
|
478
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
479
|
+
// Reference: RFC1345
|
480
|
+
ISO92JISC62991984b MIB = 68
|
481
|
+
|
482
|
+
// ISO93JIS62291984badd is the MIB identifier with IANA name JIS_C6229-1984-b-add.
|
483
|
+
//
|
484
|
+
// ISO-IR: International Register of Escape Sequences
|
485
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
486
|
+
// Reference: RFC1345
|
487
|
+
ISO93JIS62291984badd MIB = 69
|
488
|
+
|
489
|
+
// ISO94JIS62291984hand is the MIB identifier with IANA name JIS_C6229-1984-hand.
|
490
|
+
//
|
491
|
+
// ISO-IR: International Register of Escape Sequences
|
492
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
493
|
+
// Reference: RFC1345
|
494
|
+
ISO94JIS62291984hand MIB = 70
|
495
|
+
|
496
|
+
// ISO95JIS62291984handadd is the MIB identifier with IANA name JIS_C6229-1984-hand-add.
|
497
|
+
//
|
498
|
+
// ISO-IR: International Register of Escape Sequences
|
499
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
500
|
+
// Reference: RFC1345
|
501
|
+
ISO95JIS62291984handadd MIB = 71
|
502
|
+
|
503
|
+
// ISO96JISC62291984kana is the MIB identifier with IANA name JIS_C6229-1984-kana.
|
504
|
+
//
|
505
|
+
// ISO-IR: International Register of Escape Sequences
|
506
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
507
|
+
// Reference: RFC1345
|
508
|
+
ISO96JISC62291984kana MIB = 72
|
509
|
+
|
510
|
+
// ISO2033 is the MIB identifier with IANA name ISO_2033-1983.
|
511
|
+
//
|
512
|
+
// ISO-IR: International Register of Escape Sequences
|
513
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
514
|
+
// Reference: RFC1345
|
515
|
+
ISO2033 MIB = 73
|
516
|
+
|
517
|
+
// ISO99NAPLPS is the MIB identifier with IANA name ANSI_X3.110-1983.
|
518
|
+
//
|
519
|
+
// ISO-IR: International Register of Escape Sequences
|
520
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
521
|
+
// Reference: RFC1345
|
522
|
+
ISO99NAPLPS MIB = 74
|
523
|
+
|
524
|
+
// ISO102T617bit is the MIB identifier with IANA name T.61-7bit.
|
525
|
+
//
|
526
|
+
// ISO-IR: International Register of Escape Sequences
|
527
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
528
|
+
// Reference: RFC1345
|
529
|
+
ISO102T617bit MIB = 75
|
530
|
+
|
531
|
+
// ISO103T618bit is the MIB identifier with IANA name T.61-8bit.
|
532
|
+
//
|
533
|
+
// ISO-IR: International Register of Escape Sequences
|
534
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
535
|
+
// Reference: RFC1345
|
536
|
+
ISO103T618bit MIB = 76
|
537
|
+
|
538
|
+
// ISO111ECMACyrillic is the MIB identifier with IANA name ECMA-cyrillic.
|
539
|
+
//
|
540
|
+
// ISO registry
|
541
|
+
// (formerly ECMA
|
542
|
+
// registry )
|
543
|
+
ISO111ECMACyrillic MIB = 77
|
544
|
+
|
545
|
+
// ISO121Canadian1 is the MIB identifier with IANA name CSA_Z243.4-1985-1.
|
546
|
+
//
|
547
|
+
// ISO-IR: International Register of Escape Sequences
|
548
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
549
|
+
// Reference: RFC1345
|
550
|
+
ISO121Canadian1 MIB = 78
|
551
|
+
|
552
|
+
// ISO122Canadian2 is the MIB identifier with IANA name CSA_Z243.4-1985-2.
|
553
|
+
//
|
554
|
+
// ISO-IR: International Register of Escape Sequences
|
555
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
556
|
+
// Reference: RFC1345
|
557
|
+
ISO122Canadian2 MIB = 79
|
558
|
+
|
559
|
+
// ISO123CSAZ24341985gr is the MIB identifier with IANA name CSA_Z243.4-1985-gr.
|
560
|
+
//
|
561
|
+
// ISO-IR: International Register of Escape Sequences
|
562
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
563
|
+
// Reference: RFC1345
|
564
|
+
ISO123CSAZ24341985gr MIB = 80
|
565
|
+
|
566
|
+
// ISO88596E is the MIB identifier with IANA name ISO_8859-6-E (MIME: ISO-8859-6-E).
|
567
|
+
//
|
568
|
+
// rfc1556
|
569
|
+
// Reference: RFC1556
|
570
|
+
ISO88596E MIB = 81
|
571
|
+
|
572
|
+
// ISO88596I is the MIB identifier with IANA name ISO_8859-6-I (MIME: ISO-8859-6-I).
|
573
|
+
//
|
574
|
+
// rfc1556
|
575
|
+
// Reference: RFC1556
|
576
|
+
ISO88596I MIB = 82
|
577
|
+
|
578
|
+
// ISO128T101G2 is the MIB identifier with IANA name T.101-G2.
|
579
|
+
//
|
580
|
+
// ISO-IR: International Register of Escape Sequences
|
581
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
582
|
+
// Reference: RFC1345
|
583
|
+
ISO128T101G2 MIB = 83
|
584
|
+
|
585
|
+
// ISO88598E is the MIB identifier with IANA name ISO_8859-8-E (MIME: ISO-8859-8-E).
|
586
|
+
//
|
587
|
+
// rfc1556
|
588
|
+
// Reference: RFC1556
|
589
|
+
ISO88598E MIB = 84
|
590
|
+
|
591
|
+
// ISO88598I is the MIB identifier with IANA name ISO_8859-8-I (MIME: ISO-8859-8-I).
|
592
|
+
//
|
593
|
+
// rfc1556
|
594
|
+
// Reference: RFC1556
|
595
|
+
ISO88598I MIB = 85
|
596
|
+
|
597
|
+
// ISO139CSN369103 is the MIB identifier with IANA name CSN_369103.
|
598
|
+
//
|
599
|
+
// ISO-IR: International Register of Escape Sequences
|
600
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
601
|
+
// Reference: RFC1345
|
602
|
+
ISO139CSN369103 MIB = 86
|
603
|
+
|
604
|
+
// ISO141JUSIB1002 is the MIB identifier with IANA name JUS_I.B1.002.
|
605
|
+
//
|
606
|
+
// ISO-IR: International Register of Escape Sequences
|
607
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
608
|
+
// Reference: RFC1345
|
609
|
+
ISO141JUSIB1002 MIB = 87
|
610
|
+
|
611
|
+
// ISO143IECP271 is the MIB identifier with IANA name IEC_P27-1.
|
612
|
+
//
|
613
|
+
// ISO-IR: International Register of Escape Sequences
|
614
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
615
|
+
// Reference: RFC1345
|
616
|
+
ISO143IECP271 MIB = 88
|
617
|
+
|
618
|
+
// ISO146Serbian is the MIB identifier with IANA name JUS_I.B1.003-serb.
|
619
|
+
//
|
620
|
+
// ISO-IR: International Register of Escape Sequences
|
621
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
622
|
+
// Reference: RFC1345
|
623
|
+
ISO146Serbian MIB = 89
|
624
|
+
|
625
|
+
// ISO147Macedonian is the MIB identifier with IANA name JUS_I.B1.003-mac.
|
626
|
+
//
|
627
|
+
// ISO-IR: International Register of Escape Sequences
|
628
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
629
|
+
// Reference: RFC1345
|
630
|
+
ISO147Macedonian MIB = 90
|
631
|
+
|
632
|
+
// ISO150GreekCCITT is the MIB identifier with IANA name greek-ccitt.
|
633
|
+
//
|
634
|
+
// ISO-IR: International Register of Escape Sequences
|
635
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
636
|
+
// Reference: RFC1345
|
637
|
+
ISO150GreekCCITT MIB = 91
|
638
|
+
|
639
|
+
// ISO151Cuba is the MIB identifier with IANA name NC_NC00-10:81.
|
640
|
+
//
|
641
|
+
// ISO-IR: International Register of Escape Sequences
|
642
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
643
|
+
// Reference: RFC1345
|
644
|
+
ISO151Cuba MIB = 92
|
645
|
+
|
646
|
+
// ISO6937Add is the MIB identifier with IANA name ISO_6937-2-25.
|
647
|
+
//
|
648
|
+
// ISO-IR: International Register of Escape Sequences
|
649
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
650
|
+
// Reference: RFC1345
|
651
|
+
ISO6937Add MIB = 93
|
652
|
+
|
653
|
+
// ISO153GOST1976874 is the MIB identifier with IANA name GOST_19768-74.
|
654
|
+
//
|
655
|
+
// ISO-IR: International Register of Escape Sequences
|
656
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
657
|
+
// Reference: RFC1345
|
658
|
+
ISO153GOST1976874 MIB = 94
|
659
|
+
|
660
|
+
// ISO8859Supp is the MIB identifier with IANA name ISO_8859-supp.
|
661
|
+
//
|
662
|
+
// ISO-IR: International Register of Escape Sequences
|
663
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
664
|
+
// Reference: RFC1345
|
665
|
+
ISO8859Supp MIB = 95
|
666
|
+
|
667
|
+
// ISO10367Box is the MIB identifier with IANA name ISO_10367-box.
|
668
|
+
//
|
669
|
+
// ISO-IR: International Register of Escape Sequences
|
670
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
671
|
+
// Reference: RFC1345
|
672
|
+
ISO10367Box MIB = 96
|
673
|
+
|
674
|
+
// ISO158Lap is the MIB identifier with IANA name latin-lap.
|
675
|
+
//
|
676
|
+
// ISO-IR: International Register of Escape Sequences
|
677
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
678
|
+
// Reference: RFC1345
|
679
|
+
ISO158Lap MIB = 97
|
680
|
+
|
681
|
+
// ISO159JISX02121990 is the MIB identifier with IANA name JIS_X0212-1990.
|
682
|
+
//
|
683
|
+
// ISO-IR: International Register of Escape Sequences
|
684
|
+
// Note: The current registration authority is IPSJ/ITSCJ, Japan.
|
685
|
+
// Reference: RFC1345
|
686
|
+
ISO159JISX02121990 MIB = 98
|
687
|
+
|
688
|
+
// ISO646Danish is the MIB identifier with IANA name DS_2089.
|
689
|
+
//
|
690
|
+
// Danish Standard, DS 2089, February 1974
|
691
|
+
// Reference: RFC1345
|
692
|
+
ISO646Danish MIB = 99
|
693
|
+
|
694
|
+
// USDK is the MIB identifier with IANA name us-dk.
|
695
|
+
//
|
696
|
+
// Reference: RFC1345
|
697
|
+
USDK MIB = 100
|
698
|
+
|
699
|
+
// DKUS is the MIB identifier with IANA name dk-us.
|
700
|
+
//
|
701
|
+
// Reference: RFC1345
|
702
|
+
DKUS MIB = 101
|
703
|
+
|
704
|
+
// KSC5636 is the MIB identifier with IANA name KSC5636.
|
705
|
+
//
|
706
|
+
// Reference: RFC1345
|
707
|
+
KSC5636 MIB = 102
|
708
|
+
|
709
|
+
// Unicode11UTF7 is the MIB identifier with IANA name UNICODE-1-1-UTF-7.
|
710
|
+
//
|
711
|
+
// rfc1642
|
712
|
+
// Reference: RFC1642
|
713
|
+
Unicode11UTF7 MIB = 103
|
714
|
+
|
715
|
+
// ISO2022CN is the MIB identifier with IANA name ISO-2022-CN.
|
716
|
+
//
|
717
|
+
// rfc1922
|
718
|
+
// Reference: RFC1922
|
719
|
+
ISO2022CN MIB = 104
|
720
|
+
|
721
|
+
// ISO2022CNEXT is the MIB identifier with IANA name ISO-2022-CN-EXT.
|
722
|
+
//
|
723
|
+
// rfc1922
|
724
|
+
// Reference: RFC1922
|
725
|
+
ISO2022CNEXT MIB = 105
|
726
|
+
|
727
|
+
// UTF8 is the MIB identifier with IANA name UTF-8.
|
728
|
+
//
|
729
|
+
// rfc3629
|
730
|
+
// Reference: RFC3629
|
731
|
+
UTF8 MIB = 106
|
732
|
+
|
733
|
+
// ISO885913 is the MIB identifier with IANA name ISO-8859-13.
|
734
|
+
//
|
735
|
+
// ISO See http://www.iana.org/assignments/charset-reg/ISO-8859-13 http://www.iana.org/assignments/charset-reg/ISO-8859-13
|
736
|
+
ISO885913 MIB = 109
|
737
|
+
|
738
|
+
// ISO885914 is the MIB identifier with IANA name ISO-8859-14.
|
739
|
+
//
|
740
|
+
// ISO See http://www.iana.org/assignments/charset-reg/ISO-8859-14
|
741
|
+
ISO885914 MIB = 110
|
742
|
+
|
743
|
+
// ISO885915 is the MIB identifier with IANA name ISO-8859-15.
|
744
|
+
//
|
745
|
+
// ISO
|
746
|
+
// Please see: http://www.iana.org/assignments/charset-reg/ISO-8859-15
|
747
|
+
ISO885915 MIB = 111
|
748
|
+
|
749
|
+
// ISO885916 is the MIB identifier with IANA name ISO-8859-16.
|
750
|
+
//
|
751
|
+
// ISO
|
752
|
+
ISO885916 MIB = 112
|
753
|
+
|
754
|
+
// GBK is the MIB identifier with IANA name GBK.
|
755
|
+
//
|
756
|
+
// Chinese IT Standardization Technical Committee
|
757
|
+
// Please see: http://www.iana.org/assignments/charset-reg/GBK
|
758
|
+
GBK MIB = 113
|
759
|
+
|
760
|
+
// GB18030 is the MIB identifier with IANA name GB18030.
|
761
|
+
//
|
762
|
+
// Chinese IT Standardization Technical Committee
|
763
|
+
// Please see: http://www.iana.org/assignments/charset-reg/GB18030
|
764
|
+
GB18030 MIB = 114
|
765
|
+
|
766
|
+
// OSDEBCDICDF0415 is the MIB identifier with IANA name OSD_EBCDIC_DF04_15.
|
767
|
+
//
|
768
|
+
// Fujitsu-Siemens standard mainframe EBCDIC encoding
|
769
|
+
// Please see: http://www.iana.org/assignments/charset-reg/OSD-EBCDIC-DF04-15
|
770
|
+
OSDEBCDICDF0415 MIB = 115
|
771
|
+
|
772
|
+
// OSDEBCDICDF03IRV is the MIB identifier with IANA name OSD_EBCDIC_DF03_IRV.
|
773
|
+
//
|
774
|
+
// Fujitsu-Siemens standard mainframe EBCDIC encoding
|
775
|
+
// Please see: http://www.iana.org/assignments/charset-reg/OSD-EBCDIC-DF03-IRV
|
776
|
+
OSDEBCDICDF03IRV MIB = 116
|
777
|
+
|
778
|
+
// OSDEBCDICDF041 is the MIB identifier with IANA name OSD_EBCDIC_DF04_1.
|
779
|
+
//
|
780
|
+
// Fujitsu-Siemens standard mainframe EBCDIC encoding
|
781
|
+
// Please see: http://www.iana.org/assignments/charset-reg/OSD-EBCDIC-DF04-1
|
782
|
+
OSDEBCDICDF041 MIB = 117
|
783
|
+
|
784
|
+
// ISO115481 is the MIB identifier with IANA name ISO-11548-1.
|
785
|
+
//
|
786
|
+
// See http://www.iana.org/assignments/charset-reg/ISO-11548-1
|
787
|
+
ISO115481 MIB = 118
|
788
|
+
|
789
|
+
// KZ1048 is the MIB identifier with IANA name KZ-1048.
|
790
|
+
//
|
791
|
+
// See http://www.iana.org/assignments/charset-reg/KZ-1048
|
792
|
+
KZ1048 MIB = 119
|
793
|
+
|
794
|
+
// Unicode is the MIB identifier with IANA name ISO-10646-UCS-2.
|
795
|
+
//
|
796
|
+
// the 2-octet Basic Multilingual Plane, aka Unicode
|
797
|
+
// this needs to specify network byte order: the standard
|
798
|
+
// does not specify (it is a 16-bit integer space)
|
799
|
+
Unicode MIB = 1000
|
800
|
+
|
801
|
+
// UCS4 is the MIB identifier with IANA name ISO-10646-UCS-4.
|
802
|
+
//
|
803
|
+
// the full code space. (same comment about byte order,
|
804
|
+
// these are 31-bit numbers.
|
805
|
+
UCS4 MIB = 1001
|
806
|
+
|
807
|
+
// UnicodeASCII is the MIB identifier with IANA name ISO-10646-UCS-Basic.
|
808
|
+
//
|
809
|
+
// ASCII subset of Unicode. Basic Latin = collection 1
|
810
|
+
// See ISO 10646, Appendix A
|
811
|
+
UnicodeASCII MIB = 1002
|
812
|
+
|
813
|
+
// UnicodeLatin1 is the MIB identifier with IANA name ISO-10646-Unicode-Latin1.
|
814
|
+
//
|
815
|
+
// ISO Latin-1 subset of Unicode. Basic Latin and Latin-1
|
816
|
+
// Supplement = collections 1 and 2. See ISO 10646,
|
817
|
+
// Appendix A. See rfc1815 .
|
818
|
+
UnicodeLatin1 MIB = 1003
|
819
|
+
|
820
|
+
// UnicodeJapanese is the MIB identifier with IANA name ISO-10646-J-1.
|
821
|
+
//
|
822
|
+
// ISO 10646 Japanese, see rfc1815 .
|
823
|
+
UnicodeJapanese MIB = 1004
|
824
|
+
|
825
|
+
// UnicodeIBM1261 is the MIB identifier with IANA name ISO-Unicode-IBM-1261.
|
826
|
+
//
|
827
|
+
// IBM Latin-2, -3, -5, Extended Presentation Set, GCSGID: 1261
|
828
|
+
UnicodeIBM1261 MIB = 1005
|
829
|
+
|
830
|
+
// UnicodeIBM1268 is the MIB identifier with IANA name ISO-Unicode-IBM-1268.
|
831
|
+
//
|
832
|
+
// IBM Latin-4 Extended Presentation Set, GCSGID: 1268
|
833
|
+
UnicodeIBM1268 MIB = 1006
|
834
|
+
|
835
|
+
// UnicodeIBM1276 is the MIB identifier with IANA name ISO-Unicode-IBM-1276.
|
836
|
+
//
|
837
|
+
// IBM Cyrillic Greek Extended Presentation Set, GCSGID: 1276
|
838
|
+
UnicodeIBM1276 MIB = 1007
|
839
|
+
|
840
|
+
// UnicodeIBM1264 is the MIB identifier with IANA name ISO-Unicode-IBM-1264.
|
841
|
+
//
|
842
|
+
// IBM Arabic Presentation Set, GCSGID: 1264
|
843
|
+
UnicodeIBM1264 MIB = 1008
|
844
|
+
|
845
|
+
// UnicodeIBM1265 is the MIB identifier with IANA name ISO-Unicode-IBM-1265.
|
846
|
+
//
|
847
|
+
// IBM Hebrew Presentation Set, GCSGID: 1265
|
848
|
+
UnicodeIBM1265 MIB = 1009
|
849
|
+
|
850
|
+
// Unicode11 is the MIB identifier with IANA name UNICODE-1-1.
|
851
|
+
//
|
852
|
+
// rfc1641
|
853
|
+
// Reference: RFC1641
|
854
|
+
Unicode11 MIB = 1010
|
855
|
+
|
856
|
+
// SCSU is the MIB identifier with IANA name SCSU.
|
857
|
+
//
|
858
|
+
// SCSU See http://www.iana.org/assignments/charset-reg/SCSU
|
859
|
+
SCSU MIB = 1011
|
860
|
+
|
861
|
+
// UTF7 is the MIB identifier with IANA name UTF-7.
|
862
|
+
//
|
863
|
+
// rfc2152
|
864
|
+
// Reference: RFC2152
|
865
|
+
UTF7 MIB = 1012
|
866
|
+
|
867
|
+
// UTF16BE is the MIB identifier with IANA name UTF-16BE.
|
868
|
+
//
|
869
|
+
// rfc2781
|
870
|
+
// Reference: RFC2781
|
871
|
+
UTF16BE MIB = 1013
|
872
|
+
|
873
|
+
// UTF16LE is the MIB identifier with IANA name UTF-16LE.
|
874
|
+
//
|
875
|
+
// rfc2781
|
876
|
+
// Reference: RFC2781
|
877
|
+
UTF16LE MIB = 1014
|
878
|
+
|
879
|
+
// UTF16 is the MIB identifier with IANA name UTF-16.
|
880
|
+
//
|
881
|
+
// rfc2781
|
882
|
+
// Reference: RFC2781
|
883
|
+
UTF16 MIB = 1015
|
884
|
+
|
885
|
+
// CESU8 is the MIB identifier with IANA name CESU-8.
|
886
|
+
//
|
887
|
+
// http://www.unicode.org/unicode/reports/tr26
|
888
|
+
CESU8 MIB = 1016
|
889
|
+
|
890
|
+
// UTF32 is the MIB identifier with IANA name UTF-32.
|
891
|
+
//
|
892
|
+
// http://www.unicode.org/unicode/reports/tr19/
|
893
|
+
UTF32 MIB = 1017
|
894
|
+
|
895
|
+
// UTF32BE is the MIB identifier with IANA name UTF-32BE.
|
896
|
+
//
|
897
|
+
// http://www.unicode.org/unicode/reports/tr19/
|
898
|
+
UTF32BE MIB = 1018
|
899
|
+
|
900
|
+
// UTF32LE is the MIB identifier with IANA name UTF-32LE.
|
901
|
+
//
|
902
|
+
// http://www.unicode.org/unicode/reports/tr19/
|
903
|
+
UTF32LE MIB = 1019
|
904
|
+
|
905
|
+
// BOCU1 is the MIB identifier with IANA name BOCU-1.
|
906
|
+
//
|
907
|
+
// http://www.unicode.org/notes/tn6/
|
908
|
+
BOCU1 MIB = 1020
|
909
|
+
|
910
|
+
// Windows30Latin1 is the MIB identifier with IANA name ISO-8859-1-Windows-3.0-Latin-1.
|
911
|
+
//
|
912
|
+
// Extended ISO 8859-1 Latin-1 for Windows 3.0.
|
913
|
+
// PCL Symbol Set id: 9U
|
914
|
+
Windows30Latin1 MIB = 2000
|
915
|
+
|
916
|
+
// Windows31Latin1 is the MIB identifier with IANA name ISO-8859-1-Windows-3.1-Latin-1.
|
917
|
+
//
|
918
|
+
// Extended ISO 8859-1 Latin-1 for Windows 3.1.
|
919
|
+
// PCL Symbol Set id: 19U
|
920
|
+
Windows31Latin1 MIB = 2001
|
921
|
+
|
922
|
+
// Windows31Latin2 is the MIB identifier with IANA name ISO-8859-2-Windows-Latin-2.
|
923
|
+
//
|
924
|
+
// Extended ISO 8859-2. Latin-2 for Windows 3.1.
|
925
|
+
// PCL Symbol Set id: 9E
|
926
|
+
Windows31Latin2 MIB = 2002
|
927
|
+
|
928
|
+
// Windows31Latin5 is the MIB identifier with IANA name ISO-8859-9-Windows-Latin-5.
|
929
|
+
//
|
930
|
+
// Extended ISO 8859-9. Latin-5 for Windows 3.1
|
931
|
+
// PCL Symbol Set id: 5T
|
932
|
+
Windows31Latin5 MIB = 2003
|
933
|
+
|
934
|
+
// HPRoman8 is the MIB identifier with IANA name hp-roman8.
|
935
|
+
//
|
936
|
+
// LaserJet IIP Printer User's Manual,
|
937
|
+
// HP part no 33471-90901, Hewlet-Packard, June 1989.
|
938
|
+
// Reference: RFC1345
|
939
|
+
HPRoman8 MIB = 2004
|
940
|
+
|
941
|
+
// AdobeStandardEncoding is the MIB identifier with IANA name Adobe-Standard-Encoding.
|
942
|
+
//
|
943
|
+
// PostScript Language Reference Manual
|
944
|
+
// PCL Symbol Set id: 10J
|
945
|
+
AdobeStandardEncoding MIB = 2005
|
946
|
+
|
947
|
+
// VenturaUS is the MIB identifier with IANA name Ventura-US.
|
948
|
+
//
|
949
|
+
// Ventura US. ASCII plus characters typically used in
|
950
|
+
// publishing, like pilcrow, copyright, registered, trade mark,
|
951
|
+
// section, dagger, and double dagger in the range A0 (hex)
|
952
|
+
// to FF (hex).
|
953
|
+
// PCL Symbol Set id: 14J
|
954
|
+
VenturaUS MIB = 2006
|
955
|
+
|
956
|
+
// VenturaInternational is the MIB identifier with IANA name Ventura-International.
|
957
|
+
//
|
958
|
+
// Ventura International. ASCII plus coded characters similar
|
959
|
+
// to Roman8.
|
960
|
+
// PCL Symbol Set id: 13J
|
961
|
+
VenturaInternational MIB = 2007
|
962
|
+
|
963
|
+
// DECMCS is the MIB identifier with IANA name DEC-MCS.
|
964
|
+
//
|
965
|
+
// VAX/VMS User's Manual,
|
966
|
+
// Order Number: AI-Y517A-TE, April 1986.
|
967
|
+
// Reference: RFC1345
|
968
|
+
DECMCS MIB = 2008
|
969
|
+
|
970
|
+
// PC850Multilingual is the MIB identifier with IANA name IBM850.
|
971
|
+
//
|
972
|
+
// IBM NLS RM Vol2 SE09-8002-01, March 1990
|
973
|
+
// Reference: RFC1345
|
974
|
+
PC850Multilingual MIB = 2009
|
975
|
+
|
976
|
+
// PC8DanishNorwegian is the MIB identifier with IANA name PC8-Danish-Norwegian.
|
977
|
+
//
|
978
|
+
// PC Danish Norwegian
|
979
|
+
// 8-bit PC set for Danish Norwegian
|
980
|
+
// PCL Symbol Set id: 11U
|
981
|
+
PC8DanishNorwegian MIB = 2012
|
982
|
+
|
983
|
+
// PC862LatinHebrew is the MIB identifier with IANA name IBM862.
|
984
|
+
//
|
985
|
+
// IBM NLS RM Vol2 SE09-8002-01, March 1990
|
986
|
+
// Reference: RFC1345
|
987
|
+
PC862LatinHebrew MIB = 2013
|
988
|
+
|
989
|
+
// PC8Turkish is the MIB identifier with IANA name PC8-Turkish.
|
990
|
+
//
|
991
|
+
// PC Latin Turkish. PCL Symbol Set id: 9T
|
992
|
+
PC8Turkish MIB = 2014
|
993
|
+
|
994
|
+
// IBMSymbols is the MIB identifier with IANA name IBM-Symbols.
|
995
|
+
//
|
996
|
+
// Presentation Set, CPGID: 259
|
997
|
+
IBMSymbols MIB = 2015
|
998
|
+
|
999
|
+
// IBMThai is the MIB identifier with IANA name IBM-Thai.
|
1000
|
+
//
|
1001
|
+
// Presentation Set, CPGID: 838
|
1002
|
+
IBMThai MIB = 2016
|
1003
|
+
|
1004
|
+
// HPLegal is the MIB identifier with IANA name HP-Legal.
|
1005
|
+
//
|
1006
|
+
// PCL 5 Comparison Guide, Hewlett-Packard,
|
1007
|
+
// HP part number 5961-0510, October 1992
|
1008
|
+
// PCL Symbol Set id: 1U
|
1009
|
+
HPLegal MIB = 2017
|
1010
|
+
|
1011
|
+
// HPPiFont is the MIB identifier with IANA name HP-Pi-font.
|
1012
|
+
//
|
1013
|
+
// PCL 5 Comparison Guide, Hewlett-Packard,
|
1014
|
+
// HP part number 5961-0510, October 1992
|
1015
|
+
// PCL Symbol Set id: 15U
|
1016
|
+
HPPiFont MIB = 2018
|
1017
|
+
|
1018
|
+
// HPMath8 is the MIB identifier with IANA name HP-Math8.
|
1019
|
+
//
|
1020
|
+
// PCL 5 Comparison Guide, Hewlett-Packard,
|
1021
|
+
// HP part number 5961-0510, October 1992
|
1022
|
+
// PCL Symbol Set id: 8M
|
1023
|
+
HPMath8 MIB = 2019
|
1024
|
+
|
1025
|
+
// HPPSMath is the MIB identifier with IANA name Adobe-Symbol-Encoding.
|
1026
|
+
//
|
1027
|
+
// PostScript Language Reference Manual
|
1028
|
+
// PCL Symbol Set id: 5M
|
1029
|
+
HPPSMath MIB = 2020
|
1030
|
+
|
1031
|
+
// HPDesktop is the MIB identifier with IANA name HP-DeskTop.
|
1032
|
+
//
|
1033
|
+
// PCL 5 Comparison Guide, Hewlett-Packard,
|
1034
|
+
// HP part number 5961-0510, October 1992
|
1035
|
+
// PCL Symbol Set id: 7J
|
1036
|
+
HPDesktop MIB = 2021
|
1037
|
+
|
1038
|
+
// VenturaMath is the MIB identifier with IANA name Ventura-Math.
|
1039
|
+
//
|
1040
|
+
// PCL 5 Comparison Guide, Hewlett-Packard,
|
1041
|
+
// HP part number 5961-0510, October 1992
|
1042
|
+
// PCL Symbol Set id: 6M
|
1043
|
+
VenturaMath MIB = 2022
|
1044
|
+
|
1045
|
+
// MicrosoftPublishing is the MIB identifier with IANA name Microsoft-Publishing.
|
1046
|
+
//
|
1047
|
+
// PCL 5 Comparison Guide, Hewlett-Packard,
|
1048
|
+
// HP part number 5961-0510, October 1992
|
1049
|
+
// PCL Symbol Set id: 6J
|
1050
|
+
MicrosoftPublishing MIB = 2023
|
1051
|
+
|
1052
|
+
// Windows31J is the MIB identifier with IANA name Windows-31J.
|
1053
|
+
//
|
1054
|
+
// Windows Japanese. A further extension of Shift_JIS
|
1055
|
+
// to include NEC special characters (Row 13), NEC
|
1056
|
+
// selection of IBM extensions (Rows 89 to 92), and IBM
|
1057
|
+
// extensions (Rows 115 to 119). The CCS's are
|
1058
|
+
// JIS X0201:1997, JIS X0208:1997, and these extensions.
|
1059
|
+
// This charset can be used for the top-level media type "text",
|
1060
|
+
// but it is of limited or specialized use (see rfc2278 ).
|
1061
|
+
// PCL Symbol Set id: 19K
|
1062
|
+
Windows31J MIB = 2024
|
1063
|
+
|
1064
|
+
// GB2312 is the MIB identifier with IANA name GB2312 (MIME: GB2312).
|
1065
|
+
//
|
1066
|
+
// Chinese for People's Republic of China (PRC) mixed one byte,
|
1067
|
+
// two byte set:
|
1068
|
+
// 20-7E = one byte ASCII
|
1069
|
+
// A1-FE = two byte PRC Kanji
|
1070
|
+
// See GB 2312-80
|
1071
|
+
// PCL Symbol Set Id: 18C
|
1072
|
+
GB2312 MIB = 2025
|
1073
|
+
|
1074
|
+
// Big5 is the MIB identifier with IANA name Big5 (MIME: Big5).
|
1075
|
+
//
|
1076
|
+
// Chinese for Taiwan Multi-byte set.
|
1077
|
+
// PCL Symbol Set Id: 18T
|
1078
|
+
Big5 MIB = 2026
|
1079
|
+
|
1080
|
+
// Macintosh is the MIB identifier with IANA name macintosh.
|
1081
|
+
//
|
1082
|
+
// The Unicode Standard ver1.0, ISBN 0-201-56788-1, Oct 1991
|
1083
|
+
// Reference: RFC1345
|
1084
|
+
Macintosh MIB = 2027
|
1085
|
+
|
1086
|
+
// IBM037 is the MIB identifier with IANA name IBM037.
|
1087
|
+
//
|
1088
|
+
// IBM NLS RM Vol2 SE09-8002-01, March 1990
|
1089
|
+
// Reference: RFC1345
|
1090
|
+
IBM037 MIB = 2028
|
1091
|
+
|
1092
|
+
// IBM038 is the MIB identifier with IANA name IBM038.
|
1093
|
+
//
|
1094
|
+
// IBM 3174 Character Set Ref, GA27-3831-02, March 1990
|
1095
|
+
// Reference: RFC1345
|
1096
|
+
IBM038 MIB = 2029
|
1097
|
+
|
1098
|
+
// IBM273 is the MIB identifier with IANA name IBM273.
|
1099
|
+
//
|
1100
|
+
// IBM NLS RM Vol2 SE09-8002-01, March 1990
|
1101
|
+
// Reference: RFC1345
|
1102
|
+
IBM273 MIB = 2030
|
1103
|
+
|
1104
|
+
// IBM274 is the MIB identifier with IANA name IBM274.
|
1105
|
+
//
|
1106
|
+
// IBM 3174 Character Set Ref, GA27-3831-02, March 1990
|
1107
|
+
// Reference: RFC1345
|
1108
|
+
IBM274 MIB = 2031
|
1109
|
+
|
1110
|
+
// IBM275 is the MIB identifier with IANA name IBM275.
|
1111
|
+
//
|
1112
|
+
// IBM NLS RM Vol2 SE09-8002-01, March 1990
|
1113
|
+
// Reference: RFC1345
|
1114
|
+
IBM275 MIB = 2032
|
1115
|
+
|
1116
|
+
// IBM277 is the MIB identifier with IANA name IBM277.
|
1117
|
+
//
|
1118
|
+
// IBM NLS RM Vol2 SE09-8002-01, March 1990
|
1119
|
+
// Reference: RFC1345
|
1120
|
+
IBM277 MIB = 2033
|
1121
|
+
|
1122
|
+
// IBM278 is the MIB identifier with IANA name IBM278.
|
1123
|
+
//
|
1124
|
+
// IBM NLS RM Vol2 SE09-8002-01, March 1990
|
1125
|
+
// Reference: RFC1345
|
1126
|
+
IBM278 MIB = 2034
|
1127
|
+
|
1128
|
+
// IBM280 is the MIB identifier with IANA name IBM280.
|
1129
|
+
//
|
1130
|
+
// IBM NLS RM Vol2 SE09-8002-01, March 1990
|
1131
|
+
// Reference: RFC1345
|
1132
|
+
IBM280 MIB = 2035
|
1133
|
+
|
1134
|
+
// IBM281 is the MIB identifier with IANA name IBM281.
|
1135
|
+
//
|
1136
|
+
// IBM 3174 Character Set Ref, GA27-3831-02, March 1990
|
1137
|
+
// Reference: RFC1345
|
1138
|
+
IBM281 MIB = 2036
|
1139
|
+
|
1140
|
+
// IBM284 is the MIB identifier with IANA name IBM284.
|
1141
|
+
//
|
1142
|
+
// IBM NLS RM Vol2 SE09-8002-01, March 1990
|
1143
|
+
// Reference: RFC1345
|
1144
|
+
IBM284 MIB = 2037
|
1145
|
+
|
1146
|
+
// IBM285 is the MIB identifier with IANA name IBM285.
|
1147
|
+
//
|
1148
|
+
// IBM NLS RM Vol2 SE09-8002-01, March 1990
|
1149
|
+
// Reference: RFC1345
|
1150
|
+
IBM285 MIB = 2038
|
1151
|
+
|
1152
|
+
// IBM290 is the MIB identifier with IANA name IBM290.
|
1153
|
+
//
|
1154
|
+
// IBM 3174 Character Set Ref, GA27-3831-02, March 1990
|
1155
|
+
// Reference: RFC1345
|
1156
|
+
IBM290 MIB = 2039
|
1157
|
+
|
1158
|
+
// IBM297 is the MIB identifier with IANA name IBM297.
|
1159
|
+
//
|
1160
|
+
// IBM NLS RM Vol2 SE09-8002-01, March 1990
|
1161
|
+
// Reference: RFC1345
|
1162
|
+
IBM297 MIB = 2040
|
1163
|
+
|
1164
|
+
// IBM420 is the MIB identifier with IANA name IBM420.
|
1165
|
+
//
|
1166
|
+
// IBM NLS RM Vol2 SE09-8002-01, March 1990,
|
1167
|
+
// IBM NLS RM p 11-11
|
1168
|
+
// Reference: RFC1345
|
1169
|
+
IBM420 MIB = 2041
|
1170
|
+
|
1171
|
+
// IBM423 is the MIB identifier with IANA name IBM423.
|
1172
|
+
//
|
1173
|
+
// IBM NLS RM Vol2 SE09-8002-01, March 1990
|
1174
|
+
// Reference: RFC1345
|
1175
|
+
IBM423 MIB = 2042
|
1176
|
+
|
1177
|
+
// IBM424 is the MIB identifier with IANA name IBM424.
|
1178
|
+
//
|
1179
|
+
// IBM NLS RM Vol2 SE09-8002-01, March 1990
|
1180
|
+
// Reference: RFC1345
|
1181
|
+
IBM424 MIB = 2043
|
1182
|
+
|
1183
|
+
// PC8CodePage437 is the MIB identifier with IANA name IBM437.
|
1184
|
+
//
|
1185
|
+
// IBM NLS RM Vol2 SE09-8002-01, March 1990
|
1186
|
+
// Reference: RFC1345
|
1187
|
+
PC8CodePage437 MIB = 2011
|
1188
|
+
|
1189
|
+
// IBM500 is the MIB identifier with IANA name IBM500.
|
1190
|
+
//
|
1191
|
+
// IBM NLS RM Vol2 SE09-8002-01, March 1990
|
1192
|
+
// Reference: RFC1345
|
1193
|
+
IBM500 MIB = 2044
|
1194
|
+
|
1195
|
+
// IBM851 is the MIB identifier with IANA name IBM851.
|
1196
|
+
//
|
1197
|
+
// IBM NLS RM Vol2 SE09-8002-01, March 1990
|
1198
|
+
// Reference: RFC1345
|
1199
|
+
IBM851 MIB = 2045
|
1200
|
+
|
1201
|
+
// PCp852 is the MIB identifier with IANA name IBM852.
|
1202
|
+
//
|
1203
|
+
// IBM NLS RM Vol2 SE09-8002-01, March 1990
|
1204
|
+
// Reference: RFC1345
|
1205
|
+
PCp852 MIB = 2010
|
1206
|
+
|
1207
|
+
// IBM855 is the MIB identifier with IANA name IBM855.
|
1208
|
+
//
|
1209
|
+
// IBM NLS RM Vol2 SE09-8002-01, March 1990
|
1210
|
+
// Reference: RFC1345
|
1211
|
+
IBM855 MIB = 2046
|
1212
|
+
|
1213
|
+
// IBM857 is the MIB identifier with IANA name IBM857.
|
1214
|
+
//
|
1215
|
+
// IBM NLS RM Vol2 SE09-8002-01, March 1990
|
1216
|
+
// Reference: RFC1345
|
1217
|
+
IBM857 MIB = 2047
|
1218
|
+
|
1219
|
+
// IBM860 is the MIB identifier with IANA name IBM860.
|
1220
|
+
//
|
1221
|
+
// IBM NLS RM Vol2 SE09-8002-01, March 1990
|
1222
|
+
// Reference: RFC1345
|
1223
|
+
IBM860 MIB = 2048
|
1224
|
+
|
1225
|
+
// IBM861 is the MIB identifier with IANA name IBM861.
|
1226
|
+
//
|
1227
|
+
// IBM NLS RM Vol2 SE09-8002-01, March 1990
|
1228
|
+
// Reference: RFC1345
|
1229
|
+
IBM861 MIB = 2049
|
1230
|
+
|
1231
|
+
// IBM863 is the MIB identifier with IANA name IBM863.
|
1232
|
+
//
|
1233
|
+
// IBM Keyboard layouts and code pages, PN 07G4586 June 1991
|
1234
|
+
// Reference: RFC1345
|
1235
|
+
IBM863 MIB = 2050
|
1236
|
+
|
1237
|
+
// IBM864 is the MIB identifier with IANA name IBM864.
|
1238
|
+
//
|
1239
|
+
// IBM Keyboard layouts and code pages, PN 07G4586 June 1991
|
1240
|
+
// Reference: RFC1345
|
1241
|
+
IBM864 MIB = 2051
|
1242
|
+
|
1243
|
+
// IBM865 is the MIB identifier with IANA name IBM865.
|
1244
|
+
//
|
1245
|
+
// IBM DOS 3.3 Ref (Abridged), 94X9575 (Feb 1987)
|
1246
|
+
// Reference: RFC1345
|
1247
|
+
IBM865 MIB = 2052
|
1248
|
+
|
1249
|
+
// IBM868 is the MIB identifier with IANA name IBM868.
|
1250
|
+
//
|
1251
|
+
// IBM NLS RM Vol2 SE09-8002-01, March 1990
|
1252
|
+
// Reference: RFC1345
|
1253
|
+
IBM868 MIB = 2053
|
1254
|
+
|
1255
|
+
// IBM869 is the MIB identifier with IANA name IBM869.
|
1256
|
+
//
|
1257
|
+
// IBM Keyboard layouts and code pages, PN 07G4586 June 1991
|
1258
|
+
// Reference: RFC1345
|
1259
|
+
IBM869 MIB = 2054
|
1260
|
+
|
1261
|
+
// IBM870 is the MIB identifier with IANA name IBM870.
|
1262
|
+
//
|
1263
|
+
// IBM NLS RM Vol2 SE09-8002-01, March 1990
|
1264
|
+
// Reference: RFC1345
|
1265
|
+
IBM870 MIB = 2055
|
1266
|
+
|
1267
|
+
// IBM871 is the MIB identifier with IANA name IBM871.
|
1268
|
+
//
|
1269
|
+
// IBM NLS RM Vol2 SE09-8002-01, March 1990
|
1270
|
+
// Reference: RFC1345
|
1271
|
+
IBM871 MIB = 2056
|
1272
|
+
|
1273
|
+
// IBM880 is the MIB identifier with IANA name IBM880.
|
1274
|
+
//
|
1275
|
+
// IBM NLS RM Vol2 SE09-8002-01, March 1990
|
1276
|
+
// Reference: RFC1345
|
1277
|
+
IBM880 MIB = 2057
|
1278
|
+
|
1279
|
+
// IBM891 is the MIB identifier with IANA name IBM891.
|
1280
|
+
//
|
1281
|
+
// IBM NLS RM Vol2 SE09-8002-01, March 1990
|
1282
|
+
// Reference: RFC1345
|
1283
|
+
IBM891 MIB = 2058
|
1284
|
+
|
1285
|
+
// IBM903 is the MIB identifier with IANA name IBM903.
|
1286
|
+
//
|
1287
|
+
// IBM NLS RM Vol2 SE09-8002-01, March 1990
|
1288
|
+
// Reference: RFC1345
|
1289
|
+
IBM903 MIB = 2059
|
1290
|
+
|
1291
|
+
// IBBM904 is the MIB identifier with IANA name IBM904.
|
1292
|
+
//
|
1293
|
+
// IBM NLS RM Vol2 SE09-8002-01, March 1990
|
1294
|
+
// Reference: RFC1345
|
1295
|
+
IBBM904 MIB = 2060
|
1296
|
+
|
1297
|
+
// IBM905 is the MIB identifier with IANA name IBM905.
|
1298
|
+
//
|
1299
|
+
// IBM 3174 Character Set Ref, GA27-3831-02, March 1990
|
1300
|
+
// Reference: RFC1345
|
1301
|
+
IBM905 MIB = 2061
|
1302
|
+
|
1303
|
+
// IBM918 is the MIB identifier with IANA name IBM918.
|
1304
|
+
//
|
1305
|
+
// IBM NLS RM Vol2 SE09-8002-01, March 1990
|
1306
|
+
// Reference: RFC1345
|
1307
|
+
IBM918 MIB = 2062
|
1308
|
+
|
1309
|
+
// IBM1026 is the MIB identifier with IANA name IBM1026.
|
1310
|
+
//
|
1311
|
+
// IBM NLS RM Vol2 SE09-8002-01, March 1990
|
1312
|
+
// Reference: RFC1345
|
1313
|
+
IBM1026 MIB = 2063
|
1314
|
+
|
1315
|
+
// IBMEBCDICATDE is the MIB identifier with IANA name EBCDIC-AT-DE.
|
1316
|
+
//
|
1317
|
+
// IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987
|
1318
|
+
// Reference: RFC1345
|
1319
|
+
IBMEBCDICATDE MIB = 2064
|
1320
|
+
|
1321
|
+
// EBCDICATDEA is the MIB identifier with IANA name EBCDIC-AT-DE-A.
|
1322
|
+
//
|
1323
|
+
// IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987
|
1324
|
+
// Reference: RFC1345
|
1325
|
+
EBCDICATDEA MIB = 2065
|
1326
|
+
|
1327
|
+
// EBCDICCAFR is the MIB identifier with IANA name EBCDIC-CA-FR.
|
1328
|
+
//
|
1329
|
+
// IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987
|
1330
|
+
// Reference: RFC1345
|
1331
|
+
EBCDICCAFR MIB = 2066
|
1332
|
+
|
1333
|
+
// EBCDICDKNO is the MIB identifier with IANA name EBCDIC-DK-NO.
|
1334
|
+
//
|
1335
|
+
// IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987
|
1336
|
+
// Reference: RFC1345
|
1337
|
+
EBCDICDKNO MIB = 2067
|
1338
|
+
|
1339
|
+
// EBCDICDKNOA is the MIB identifier with IANA name EBCDIC-DK-NO-A.
|
1340
|
+
//
|
1341
|
+
// IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987
|
1342
|
+
// Reference: RFC1345
|
1343
|
+
EBCDICDKNOA MIB = 2068
|
1344
|
+
|
1345
|
+
// EBCDICFISE is the MIB identifier with IANA name EBCDIC-FI-SE.
|
1346
|
+
//
|
1347
|
+
// IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987
|
1348
|
+
// Reference: RFC1345
|
1349
|
+
EBCDICFISE MIB = 2069
|
1350
|
+
|
1351
|
+
// EBCDICFISEA is the MIB identifier with IANA name EBCDIC-FI-SE-A.
|
1352
|
+
//
|
1353
|
+
// IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987
|
1354
|
+
// Reference: RFC1345
|
1355
|
+
EBCDICFISEA MIB = 2070
|
1356
|
+
|
1357
|
+
// EBCDICFR is the MIB identifier with IANA name EBCDIC-FR.
|
1358
|
+
//
|
1359
|
+
// IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987
|
1360
|
+
// Reference: RFC1345
|
1361
|
+
EBCDICFR MIB = 2071
|
1362
|
+
|
1363
|
+
// EBCDICIT is the MIB identifier with IANA name EBCDIC-IT.
|
1364
|
+
//
|
1365
|
+
// IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987
|
1366
|
+
// Reference: RFC1345
|
1367
|
+
EBCDICIT MIB = 2072
|
1368
|
+
|
1369
|
+
// EBCDICPT is the MIB identifier with IANA name EBCDIC-PT.
|
1370
|
+
//
|
1371
|
+
// IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987
|
1372
|
+
// Reference: RFC1345
|
1373
|
+
EBCDICPT MIB = 2073
|
1374
|
+
|
1375
|
+
// EBCDICES is the MIB identifier with IANA name EBCDIC-ES.
|
1376
|
+
//
|
1377
|
+
// IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987
|
1378
|
+
// Reference: RFC1345
|
1379
|
+
EBCDICES MIB = 2074
|
1380
|
+
|
1381
|
+
// EBCDICESA is the MIB identifier with IANA name EBCDIC-ES-A.
|
1382
|
+
//
|
1383
|
+
// IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987
|
1384
|
+
// Reference: RFC1345
|
1385
|
+
EBCDICESA MIB = 2075
|
1386
|
+
|
1387
|
+
// EBCDICESS is the MIB identifier with IANA name EBCDIC-ES-S.
|
1388
|
+
//
|
1389
|
+
// IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987
|
1390
|
+
// Reference: RFC1345
|
1391
|
+
EBCDICESS MIB = 2076
|
1392
|
+
|
1393
|
+
// EBCDICUK is the MIB identifier with IANA name EBCDIC-UK.
|
1394
|
+
//
|
1395
|
+
// IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987
|
1396
|
+
// Reference: RFC1345
|
1397
|
+
EBCDICUK MIB = 2077
|
1398
|
+
|
1399
|
+
// EBCDICUS is the MIB identifier with IANA name EBCDIC-US.
|
1400
|
+
//
|
1401
|
+
// IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987
|
1402
|
+
// Reference: RFC1345
|
1403
|
+
EBCDICUS MIB = 2078
|
1404
|
+
|
1405
|
+
// Unknown8BiT is the MIB identifier with IANA name UNKNOWN-8BIT.
|
1406
|
+
//
|
1407
|
+
// Reference: RFC1428
|
1408
|
+
Unknown8BiT MIB = 2079
|
1409
|
+
|
1410
|
+
// Mnemonic is the MIB identifier with IANA name MNEMONIC.
|
1411
|
+
//
|
1412
|
+
// rfc1345 , also known as "mnemonic+ascii+38"
|
1413
|
+
// Reference: RFC1345
|
1414
|
+
Mnemonic MIB = 2080
|
1415
|
+
|
1416
|
+
// Mnem is the MIB identifier with IANA name MNEM.
|
1417
|
+
//
|
1418
|
+
// rfc1345 , also known as "mnemonic+ascii+8200"
|
1419
|
+
// Reference: RFC1345
|
1420
|
+
Mnem MIB = 2081
|
1421
|
+
|
1422
|
+
// VISCII is the MIB identifier with IANA name VISCII.
|
1423
|
+
//
|
1424
|
+
// rfc1456
|
1425
|
+
// Reference: RFC1456
|
1426
|
+
VISCII MIB = 2082
|
1427
|
+
|
1428
|
+
// VIQR is the MIB identifier with IANA name VIQR.
|
1429
|
+
//
|
1430
|
+
// rfc1456
|
1431
|
+
// Reference: RFC1456
|
1432
|
+
VIQR MIB = 2083
|
1433
|
+
|
1434
|
+
// KOI8R is the MIB identifier with IANA name KOI8-R (MIME: KOI8-R).
|
1435
|
+
//
|
1436
|
+
// rfc1489 , based on GOST-19768-74, ISO-6937/8,
|
1437
|
+
// INIS-Cyrillic, ISO-5427.
|
1438
|
+
// Reference: RFC1489
|
1439
|
+
KOI8R MIB = 2084
|
1440
|
+
|
1441
|
+
// HZGB2312 is the MIB identifier with IANA name HZ-GB-2312.
|
1442
|
+
//
|
1443
|
+
// rfc1842 , rfc1843 rfc1843 rfc1842
|
1444
|
+
HZGB2312 MIB = 2085
|
1445
|
+
|
1446
|
+
// IBM866 is the MIB identifier with IANA name IBM866.
|
1447
|
+
//
|
1448
|
+
// IBM NLDG Volume 2 (SE09-8002-03) August 1994
|
1449
|
+
IBM866 MIB = 2086
|
1450
|
+
|
1451
|
+
// PC775Baltic is the MIB identifier with IANA name IBM775.
|
1452
|
+
//
|
1453
|
+
// HP PCL 5 Comparison Guide (P/N 5021-0329) pp B-13, 1996
|
1454
|
+
PC775Baltic MIB = 2087
|
1455
|
+
|
1456
|
+
// KOI8U is the MIB identifier with IANA name KOI8-U.
|
1457
|
+
//
|
1458
|
+
// rfc2319
|
1459
|
+
// Reference: RFC2319
|
1460
|
+
KOI8U MIB = 2088
|
1461
|
+
|
1462
|
+
// IBM00858 is the MIB identifier with IANA name IBM00858.
|
1463
|
+
//
|
1464
|
+
// IBM See http://www.iana.org/assignments/charset-reg/IBM00858
|
1465
|
+
IBM00858 MIB = 2089
|
1466
|
+
|
1467
|
+
// IBM00924 is the MIB identifier with IANA name IBM00924.
|
1468
|
+
//
|
1469
|
+
// IBM See http://www.iana.org/assignments/charset-reg/IBM00924
|
1470
|
+
IBM00924 MIB = 2090
|
1471
|
+
|
1472
|
+
// IBM01140 is the MIB identifier with IANA name IBM01140.
|
1473
|
+
//
|
1474
|
+
// IBM See http://www.iana.org/assignments/charset-reg/IBM01140
|
1475
|
+
IBM01140 MIB = 2091
|
1476
|
+
|
1477
|
+
// IBM01141 is the MIB identifier with IANA name IBM01141.
|
1478
|
+
//
|
1479
|
+
// IBM See http://www.iana.org/assignments/charset-reg/IBM01141
|
1480
|
+
IBM01141 MIB = 2092
|
1481
|
+
|
1482
|
+
// IBM01142 is the MIB identifier with IANA name IBM01142.
|
1483
|
+
//
|
1484
|
+
// IBM See http://www.iana.org/assignments/charset-reg/IBM01142
|
1485
|
+
IBM01142 MIB = 2093
|
1486
|
+
|
1487
|
+
// IBM01143 is the MIB identifier with IANA name IBM01143.
|
1488
|
+
//
|
1489
|
+
// IBM See http://www.iana.org/assignments/charset-reg/IBM01143
|
1490
|
+
IBM01143 MIB = 2094
|
1491
|
+
|
1492
|
+
// IBM01144 is the MIB identifier with IANA name IBM01144.
|
1493
|
+
//
|
1494
|
+
// IBM See http://www.iana.org/assignments/charset-reg/IBM01144
|
1495
|
+
IBM01144 MIB = 2095
|
1496
|
+
|
1497
|
+
// IBM01145 is the MIB identifier with IANA name IBM01145.
|
1498
|
+
//
|
1499
|
+
// IBM See http://www.iana.org/assignments/charset-reg/IBM01145
|
1500
|
+
IBM01145 MIB = 2096
|
1501
|
+
|
1502
|
+
// IBM01146 is the MIB identifier with IANA name IBM01146.
|
1503
|
+
//
|
1504
|
+
// IBM See http://www.iana.org/assignments/charset-reg/IBM01146
|
1505
|
+
IBM01146 MIB = 2097
|
1506
|
+
|
1507
|
+
// IBM01147 is the MIB identifier with IANA name IBM01147.
|
1508
|
+
//
|
1509
|
+
// IBM See http://www.iana.org/assignments/charset-reg/IBM01147
|
1510
|
+
IBM01147 MIB = 2098
|
1511
|
+
|
1512
|
+
// IBM01148 is the MIB identifier with IANA name IBM01148.
|
1513
|
+
//
|
1514
|
+
// IBM See http://www.iana.org/assignments/charset-reg/IBM01148
|
1515
|
+
IBM01148 MIB = 2099
|
1516
|
+
|
1517
|
+
// IBM01149 is the MIB identifier with IANA name IBM01149.
|
1518
|
+
//
|
1519
|
+
// IBM See http://www.iana.org/assignments/charset-reg/IBM01149
|
1520
|
+
IBM01149 MIB = 2100
|
1521
|
+
|
1522
|
+
// Big5HKSCS is the MIB identifier with IANA name Big5-HKSCS.
|
1523
|
+
//
|
1524
|
+
// See http://www.iana.org/assignments/charset-reg/Big5-HKSCS
|
1525
|
+
Big5HKSCS MIB = 2101
|
1526
|
+
|
1527
|
+
// IBM1047 is the MIB identifier with IANA name IBM1047.
|
1528
|
+
//
|
1529
|
+
// IBM1047 (EBCDIC Latin 1/Open Systems) http://www-1.ibm.com/servers/eserver/iseries/software/globalization/pdf/cp01047z.pdf
|
1530
|
+
IBM1047 MIB = 2102
|
1531
|
+
|
1532
|
+
// PTCP154 is the MIB identifier with IANA name PTCP154.
|
1533
|
+
//
|
1534
|
+
// See http://www.iana.org/assignments/charset-reg/PTCP154
|
1535
|
+
PTCP154 MIB = 2103
|
1536
|
+
|
1537
|
+
// Amiga1251 is the MIB identifier with IANA name Amiga-1251.
|
1538
|
+
//
|
1539
|
+
// See http://www.amiga.ultranet.ru/Amiga-1251.html
|
1540
|
+
Amiga1251 MIB = 2104
|
1541
|
+
|
1542
|
+
// KOI7switched is the MIB identifier with IANA name KOI7-switched.
|
1543
|
+
//
|
1544
|
+
// See http://www.iana.org/assignments/charset-reg/KOI7-switched
|
1545
|
+
KOI7switched MIB = 2105
|
1546
|
+
|
1547
|
+
// BRF is the MIB identifier with IANA name BRF.
|
1548
|
+
//
|
1549
|
+
// See http://www.iana.org/assignments/charset-reg/BRF
|
1550
|
+
BRF MIB = 2106
|
1551
|
+
|
1552
|
+
// TSCII is the MIB identifier with IANA name TSCII.
|
1553
|
+
//
|
1554
|
+
// See http://www.iana.org/assignments/charset-reg/TSCII
|
1555
|
+
TSCII MIB = 2107
|
1556
|
+
|
1557
|
+
// CP51932 is the MIB identifier with IANA name CP51932.
|
1558
|
+
//
|
1559
|
+
// See http://www.iana.org/assignments/charset-reg/CP51932
|
1560
|
+
CP51932 MIB = 2108
|
1561
|
+
|
1562
|
+
// Windows874 is the MIB identifier with IANA name windows-874.
|
1563
|
+
//
|
1564
|
+
// See http://www.iana.org/assignments/charset-reg/windows-874
|
1565
|
+
Windows874 MIB = 2109
|
1566
|
+
|
1567
|
+
// Windows1250 is the MIB identifier with IANA name windows-1250.
|
1568
|
+
//
|
1569
|
+
// Microsoft http://www.iana.org/assignments/charset-reg/windows-1250
|
1570
|
+
Windows1250 MIB = 2250
|
1571
|
+
|
1572
|
+
// Windows1251 is the MIB identifier with IANA name windows-1251.
|
1573
|
+
//
|
1574
|
+
// Microsoft http://www.iana.org/assignments/charset-reg/windows-1251
|
1575
|
+
Windows1251 MIB = 2251
|
1576
|
+
|
1577
|
+
// Windows1252 is the MIB identifier with IANA name windows-1252.
|
1578
|
+
//
|
1579
|
+
// Microsoft http://www.iana.org/assignments/charset-reg/windows-1252
|
1580
|
+
Windows1252 MIB = 2252
|
1581
|
+
|
1582
|
+
// Windows1253 is the MIB identifier with IANA name windows-1253.
|
1583
|
+
//
|
1584
|
+
// Microsoft http://www.iana.org/assignments/charset-reg/windows-1253
|
1585
|
+
Windows1253 MIB = 2253
|
1586
|
+
|
1587
|
+
// Windows1254 is the MIB identifier with IANA name windows-1254.
|
1588
|
+
//
|
1589
|
+
// Microsoft http://www.iana.org/assignments/charset-reg/windows-1254
|
1590
|
+
Windows1254 MIB = 2254
|
1591
|
+
|
1592
|
+
// Windows1255 is the MIB identifier with IANA name windows-1255.
|
1593
|
+
//
|
1594
|
+
// Microsoft http://www.iana.org/assignments/charset-reg/windows-1255
|
1595
|
+
Windows1255 MIB = 2255
|
1596
|
+
|
1597
|
+
// Windows1256 is the MIB identifier with IANA name windows-1256.
|
1598
|
+
//
|
1599
|
+
// Microsoft http://www.iana.org/assignments/charset-reg/windows-1256
|
1600
|
+
Windows1256 MIB = 2256
|
1601
|
+
|
1602
|
+
// Windows1257 is the MIB identifier with IANA name windows-1257.
|
1603
|
+
//
|
1604
|
+
// Microsoft http://www.iana.org/assignments/charset-reg/windows-1257
|
1605
|
+
Windows1257 MIB = 2257
|
1606
|
+
|
1607
|
+
// Windows1258 is the MIB identifier with IANA name windows-1258.
|
1608
|
+
//
|
1609
|
+
// Microsoft http://www.iana.org/assignments/charset-reg/windows-1258
|
1610
|
+
Windows1258 MIB = 2258
|
1611
|
+
|
1612
|
+
// TIS620 is the MIB identifier with IANA name TIS-620.
|
1613
|
+
//
|
1614
|
+
// Thai Industrial Standards Institute (TISI)
|
1615
|
+
TIS620 MIB = 2259
|
1616
|
+
|
1617
|
+
// CP50220 is the MIB identifier with IANA name CP50220.
|
1618
|
+
//
|
1619
|
+
// See http://www.iana.org/assignments/charset-reg/CP50220
|
1620
|
+
CP50220 MIB = 2260
|
1621
|
+
)
|