├── _example ├── crts │ ├── .gitkeep │ └── generate.sh ├── static │ └── example.jpg ├── README.md └── main.go ├── manifest.json ├── .gitignore ├── vendor └── golang.org │ └── x │ └── net │ ├── codereview.cfg │ ├── http2 │ ├── .gitignore │ ├── h2demo │ │ ├── rootCA.srl │ │ ├── .gitignore │ │ ├── Makefile │ │ └── README │ ├── Makefile │ ├── errors_test.go │ ├── not_go18.go │ ├── README │ ├── gotrack_test.go │ ├── flow.go │ ├── go18.go │ ├── writesched_random_test.go │ ├── go16.go │ ├── not_go16.go │ ├── flow_test.go │ ├── go17_not18.go │ ├── fixed_buffer.go │ ├── Dockerfile │ ├── go18_test.go │ └── headermap.go │ ├── .gitignore │ ├── html │ ├── charset │ │ └── testdata │ │ │ ├── UTF-16BE-BOM.html │ │ │ ├── UTF-16LE-BOM.html │ │ │ └── README │ ├── testdata │ │ └── webkit │ │ │ ├── pending-spec-changes-plain-text-unsafe.dat │ │ │ ├── scripted │ │ │ ├── adoption01.dat │ │ │ └── webkit01.dat │ │ │ ├── adoption02.dat │ │ │ ├── inbody01.dat │ │ │ ├── isindex.dat │ │ │ ├── tests4.dat │ │ │ ├── tests24.dat │ │ │ ├── tests14.dat │ │ │ ├── pending-spec-changes.dat │ │ │ ├── README │ │ │ └── tests12.dat │ ├── example_test.go │ └── entity_test.go │ ├── README │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── route │ ├── syscall.s │ ├── message_darwin_test.go │ ├── interface_announce.go │ ├── route_classic.go │ ├── interface_multicast.go │ ├── route_openbsd.go │ ├── sys.go │ ├── syscall.go │ ├── address_darwin_test.go │ ├── interface_classic.go │ ├── zsys_openbsd.go │ └── message.go │ ├── ipv4 │ ├── sys_linux_386.s │ ├── sys_solaris_amd64.s │ ├── sockopt_stub.go │ ├── sys_stub.go │ ├── bpfopt_stub.go │ ├── sockopt_asmreqn_stub.go │ ├── sockopt_ssmreq_stub.go │ ├── icmp_stub.go │ ├── payload.go │ ├── control_stub.go │ ├── icmp_linux.go │ ├── syscall_windows.go │ ├── sockopt_asmreq_stub.go │ ├── zsys_netbsd.go │ ├── zsys_openbsd.go │ ├── control_windows.go │ ├── zsys_dragonfly.go │ ├── bpfopt_linux.go │ ├── genericopt_stub.go │ ├── syscall_unix.go │ ├── syscall_linux_386.go │ ├── control_pktinfo.go │ ├── defs_netbsd.go │ ├── defs_openbsd.go │ ├── defs_dragonfly.go │ ├── control_bsd.go │ ├── sockopt_asmreqn_unix.go │ ├── sys_openbsd.go │ ├── sys_bsd.go │ ├── syscall_solaris.go │ ├── iana.go │ ├── sockopt_asmreq_posix.go │ ├── payload_nocmsg.go │ ├── helper.go │ ├── genericopt_posix.go │ ├── sockopt_ssmreq_unix.go │ ├── icmp.go │ ├── sockopt.go │ ├── sys_windows.go │ ├── sockopt_asmreq.go │ ├── sys_linux.go │ └── sys_solaris.go │ ├── ipv6 │ ├── sys_linux_386.s │ ├── sys_solaris_amd64.s │ ├── sys_stub.go │ ├── sockopt_stub.go │ ├── bpfopt_stub.go │ ├── icmp_stub.go │ ├── sockopt_ssmreq_stub.go │ ├── payload.go │ ├── icmp_windows.go │ ├── control_stub.go │ ├── syscall_windows.go │ ├── sockopt_asmreq_posix.go │ ├── icmp_linux.go │ ├── mocktransponder_test.go │ ├── icmp_solaris.go │ ├── icmp_bsd.go │ ├── control_windows.go │ ├── bpfopt_linux.go │ ├── syscall_unix.go │ ├── genericopt_stub.go │ ├── syscall_linux_386.go │ ├── helper.go │ ├── syscall_solaris.go │ ├── header_test.go │ ├── payload_nocmsg.go │ ├── sockopt_ssmreq_unix.go │ ├── header.go │ ├── control_rfc2292_unix.go │ ├── genericopt_posix.go │ ├── icmp.go │ ├── zsys_netbsd.go │ ├── sys_windows.go │ ├── zsys_dragonfly.go │ └── sockopt.go │ ├── icmp │ ├── sys_freebsd.go │ ├── helper.go │ ├── ipv6.go │ ├── listen_stub.go │ ├── timeexceeded.go │ ├── dstunreach.go │ ├── packettoobig.go │ ├── messagebody.go │ ├── echo.go │ ├── example_test.go │ ├── ipv4.go │ ├── helper_posix.go │ └── paramprob.go │ ├── lif │ ├── sys_solaris_amd64.s │ ├── syscall.go │ ├── lif.go │ └── link_test.go │ ├── webdav │ ├── file_go1.7.go │ ├── file_go1.6.go │ └── internal │ │ └── xml │ │ ├── README │ │ └── atom_test.go │ ├── .gitattributes │ ├── internal │ ├── nettest │ │ ├── helper_nobsd.go │ │ ├── rlimit.go │ │ ├── helper_stub.go │ │ ├── helper_unix.go │ │ ├── helper_posix.go │ │ ├── helper_bsd.go │ │ └── helper_windows.go │ └── netreflect │ │ ├── socket_stub.go │ │ ├── socket_posix.go │ │ ├── socket.go │ │ └── socket_test.go │ ├── proxy │ ├── direct.go │ └── per_host_test.go │ ├── bpf │ ├── testdata │ │ ├── all_instructions.bpf │ │ └── all_instructions.txt │ ├── vm_extension_test.go │ └── asm.go │ ├── websocket │ ├── dial.go │ ├── examplehandler_test.go │ ├── exampledial_test.go │ └── dial_test.go │ ├── context │ ├── ctxhttp │ │ └── ctxhttp_17_test.go │ └── withtimeout_test.go │ ├── nettest │ ├── conntest_go16.go │ ├── conntest_go17.go │ └── conntest_test.go │ ├── CONTRIBUTING.md │ ├── idna │ ├── idna_test.go │ └── idna.go │ ├── netutil │ └── listen.go │ ├── PATENTS │ └── LICENSE ├── .travis.yml ├── internal ├── bits │ ├── bits_benchmark_test.go │ ├── bits.go │ └── bits_test.go └── encoding │ └── golomb │ ├── testdata │ └── words.nato │ └── README.md ├── lock.json ├── Makefile └── LICENSE /_example/crts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.key 2 | *.pem 3 | *.csr 4 | *.crt 5 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/rootCA.srl: -------------------------------------------------------------------------------- 1 | E2CE26BF3285059C 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /_example/static/example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcnksm/go-casper/HEAD/_example/static/example.jpg -------------------------------------------------------------------------------- /vendor/golang.org/x/net/.gitignore: -------------------------------------------------------------------------------- 1 | # Add no patterns to .hgignore except for files generated by the build. 2 | last-change 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/.gitignore: -------------------------------------------------------------------------------- 1 | h2demo 2 | h2demo.linux 3 | client-id.dat 4 | client-secret.dat 5 | token.dat 6 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/charset/testdata/UTF-16BE-BOM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcnksm/go-casper/HEAD/vendor/golang.org/x/net/html/charset/testdata/UTF-16BE-BOM.html -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/charset/testdata/UTF-16LE-BOM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcnksm/go-casper/HEAD/vendor/golang.org/x/net/html/charset/testdata/UTF-16LE-BOM.html -------------------------------------------------------------------------------- /vendor/golang.org/x/net/README: -------------------------------------------------------------------------------- 1 | This repository holds supplementary Go networking libraries. 2 | 3 | To submit changes to this repository, see http://golang.org/doc/contribute.html. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.8rc3 5 | - tip 6 | 7 | os: 8 | - linux 9 | - osx 10 | 11 | sudo: false 12 | 13 | install: 14 | - echo "skipping travis' default" 15 | 16 | script: 17 | - make test-all 18 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/testdata/webkit/pending-spec-changes-plain-text-unsafe.dat: -------------------------------------------------------------------------------- 1 | #data 2 |