From 17e723d0226ca768f47c6ec51c26abc25f64d395 Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Thu, 24 Sep 2015 09:15:55 +0200 Subject: [PATCH] http2: move github.com/bradfitz/http2 down into a new http2 directory In prep for move to golang.org/x/net/*. --- .gitignore => http2/.gitignore | 0 AUTHORS => http2/AUTHORS | 0 CONTRIBUTORS => http2/CONTRIBUTORS | 0 Dockerfile => http2/Dockerfile | 0 HACKING => http2/HACKING | 0 LICENSE => http2/LICENSE | 0 Makefile => http2/Makefile | 0 README => http2/README | 0 buffer.go => http2/buffer.go | 0 buffer_test.go => http2/buffer_test.go | 0 errors.go => http2/errors.go | 0 errors_test.go => http2/errors_test.go | 0 flow.go => http2/flow.go | 0 flow_test.go => http2/flow_test.go | 0 frame.go => http2/frame.go | 0 frame_test.go => http2/frame_test.go | 0 gotrack.go => http2/gotrack.go | 0 gotrack_test.go => http2/gotrack_test.go | 0 {h2demo => http2/h2demo}/.gitignore | 0 {h2demo => http2/h2demo}/Makefile | 0 {h2demo => http2/h2demo}/README | 0 {h2demo => http2/h2demo}/h2demo.go | 0 {h2demo => http2/h2demo}/launch.go | 0 {h2demo => http2/h2demo}/rootCA.key | 0 {h2demo => http2/h2demo}/rootCA.pem | 0 {h2demo => http2/h2demo}/rootCA.srl | 0 {h2demo => http2/h2demo}/server.crt | 0 {h2demo => http2/h2demo}/server.key | 0 {h2i => http2/h2i}/README.md | 0 {h2i => http2/h2i}/h2i.go | 0 headermap.go => http2/headermap.go | 0 {hpack => http2/hpack}/encode.go | 0 {hpack => http2/hpack}/encode_test.go | 0 {hpack => http2/hpack}/hpack.go | 0 {hpack => http2/hpack}/hpack_test.go | 0 {hpack => http2/hpack}/huffman.go | 0 {hpack => http2/hpack}/tables.go | 0 http2.go => http2/http2.go | 0 http2_test.go => http2/http2_test.go | 0 pipe.go => http2/pipe.go | 0 pipe_test.go => http2/pipe_test.go | 0 priority_test.go => http2/priority_test.go | 0 server.go => http2/server.go | 0 server_test.go => http2/server_test.go | 0 {testdata => http2/testdata}/draft-ietf-httpbis-http2.xml | 0 transport.go => http2/transport.go | 0 transport_test.go => http2/transport_test.go | 0 write.go => http2/write.go | 0 writesched.go => http2/writesched.go | 0 z_spec_test.go => http2/z_spec_test.go | 0 50 files changed, 0 insertions(+), 0 deletions(-) rename .gitignore => http2/.gitignore (100%) rename AUTHORS => http2/AUTHORS (100%) rename CONTRIBUTORS => http2/CONTRIBUTORS (100%) rename Dockerfile => http2/Dockerfile (100%) rename HACKING => http2/HACKING (100%) rename LICENSE => http2/LICENSE (100%) rename Makefile => http2/Makefile (100%) rename README => http2/README (100%) rename buffer.go => http2/buffer.go (100%) rename buffer_test.go => http2/buffer_test.go (100%) rename errors.go => http2/errors.go (100%) rename errors_test.go => http2/errors_test.go (100%) rename flow.go => http2/flow.go (100%) rename flow_test.go => http2/flow_test.go (100%) rename frame.go => http2/frame.go (100%) rename frame_test.go => http2/frame_test.go (100%) rename gotrack.go => http2/gotrack.go (100%) rename gotrack_test.go => http2/gotrack_test.go (100%) rename {h2demo => http2/h2demo}/.gitignore (100%) rename {h2demo => http2/h2demo}/Makefile (100%) rename {h2demo => http2/h2demo}/README (100%) rename {h2demo => http2/h2demo}/h2demo.go (100%) rename {h2demo => http2/h2demo}/launch.go (100%) rename {h2demo => http2/h2demo}/rootCA.key (100%) rename {h2demo => http2/h2demo}/rootCA.pem (100%) rename {h2demo => http2/h2demo}/rootCA.srl (100%) rename {h2demo => http2/h2demo}/server.crt (100%) rename {h2demo => http2/h2demo}/server.key (100%) rename {h2i => http2/h2i}/README.md (100%) rename {h2i => http2/h2i}/h2i.go (100%) rename headermap.go => http2/headermap.go (100%) rename {hpack => http2/hpack}/encode.go (100%) rename {hpack => http2/hpack}/encode_test.go (100%) rename {hpack => http2/hpack}/hpack.go (100%) rename {hpack => http2/hpack}/hpack_test.go (100%) rename {hpack => http2/hpack}/huffman.go (100%) rename {hpack => http2/hpack}/tables.go (100%) rename http2.go => http2/http2.go (100%) rename http2_test.go => http2/http2_test.go (100%) rename pipe.go => http2/pipe.go (100%) rename pipe_test.go => http2/pipe_test.go (100%) rename priority_test.go => http2/priority_test.go (100%) rename server.go => http2/server.go (100%) rename server_test.go => http2/server_test.go (100%) rename {testdata => http2/testdata}/draft-ietf-httpbis-http2.xml (100%) rename transport.go => http2/transport.go (100%) rename transport_test.go => http2/transport_test.go (100%) rename write.go => http2/write.go (100%) rename writesched.go => http2/writesched.go (100%) rename z_spec_test.go => http2/z_spec_test.go (100%) diff --git a/.gitignore b/http2/.gitignore similarity index 100% rename from .gitignore rename to http2/.gitignore diff --git a/AUTHORS b/http2/AUTHORS similarity index 100% rename from AUTHORS rename to http2/AUTHORS diff --git a/CONTRIBUTORS b/http2/CONTRIBUTORS similarity index 100% rename from CONTRIBUTORS rename to http2/CONTRIBUTORS diff --git a/Dockerfile b/http2/Dockerfile similarity index 100% rename from Dockerfile rename to http2/Dockerfile diff --git a/HACKING b/http2/HACKING similarity index 100% rename from HACKING rename to http2/HACKING diff --git a/LICENSE b/http2/LICENSE similarity index 100% rename from LICENSE rename to http2/LICENSE diff --git a/Makefile b/http2/Makefile similarity index 100% rename from Makefile rename to http2/Makefile diff --git a/README b/http2/README similarity index 100% rename from README rename to http2/README diff --git a/buffer.go b/http2/buffer.go similarity index 100% rename from buffer.go rename to http2/buffer.go diff --git a/buffer_test.go b/http2/buffer_test.go similarity index 100% rename from buffer_test.go rename to http2/buffer_test.go diff --git a/errors.go b/http2/errors.go similarity index 100% rename from errors.go rename to http2/errors.go diff --git a/errors_test.go b/http2/errors_test.go similarity index 100% rename from errors_test.go rename to http2/errors_test.go diff --git a/flow.go b/http2/flow.go similarity index 100% rename from flow.go rename to http2/flow.go diff --git a/flow_test.go b/http2/flow_test.go similarity index 100% rename from flow_test.go rename to http2/flow_test.go diff --git a/frame.go b/http2/frame.go similarity index 100% rename from frame.go rename to http2/frame.go diff --git a/frame_test.go b/http2/frame_test.go similarity index 100% rename from frame_test.go rename to http2/frame_test.go diff --git a/gotrack.go b/http2/gotrack.go similarity index 100% rename from gotrack.go rename to http2/gotrack.go diff --git a/gotrack_test.go b/http2/gotrack_test.go similarity index 100% rename from gotrack_test.go rename to http2/gotrack_test.go diff --git a/h2demo/.gitignore b/http2/h2demo/.gitignore similarity index 100% rename from h2demo/.gitignore rename to http2/h2demo/.gitignore diff --git a/h2demo/Makefile b/http2/h2demo/Makefile similarity index 100% rename from h2demo/Makefile rename to http2/h2demo/Makefile diff --git a/h2demo/README b/http2/h2demo/README similarity index 100% rename from h2demo/README rename to http2/h2demo/README diff --git a/h2demo/h2demo.go b/http2/h2demo/h2demo.go similarity index 100% rename from h2demo/h2demo.go rename to http2/h2demo/h2demo.go diff --git a/h2demo/launch.go b/http2/h2demo/launch.go similarity index 100% rename from h2demo/launch.go rename to http2/h2demo/launch.go diff --git a/h2demo/rootCA.key b/http2/h2demo/rootCA.key similarity index 100% rename from h2demo/rootCA.key rename to http2/h2demo/rootCA.key diff --git a/h2demo/rootCA.pem b/http2/h2demo/rootCA.pem similarity index 100% rename from h2demo/rootCA.pem rename to http2/h2demo/rootCA.pem diff --git a/h2demo/rootCA.srl b/http2/h2demo/rootCA.srl similarity index 100% rename from h2demo/rootCA.srl rename to http2/h2demo/rootCA.srl diff --git a/h2demo/server.crt b/http2/h2demo/server.crt similarity index 100% rename from h2demo/server.crt rename to http2/h2demo/server.crt diff --git a/h2demo/server.key b/http2/h2demo/server.key similarity index 100% rename from h2demo/server.key rename to http2/h2demo/server.key diff --git a/h2i/README.md b/http2/h2i/README.md similarity index 100% rename from h2i/README.md rename to http2/h2i/README.md diff --git a/h2i/h2i.go b/http2/h2i/h2i.go similarity index 100% rename from h2i/h2i.go rename to http2/h2i/h2i.go diff --git a/headermap.go b/http2/headermap.go similarity index 100% rename from headermap.go rename to http2/headermap.go diff --git a/hpack/encode.go b/http2/hpack/encode.go similarity index 100% rename from hpack/encode.go rename to http2/hpack/encode.go diff --git a/hpack/encode_test.go b/http2/hpack/encode_test.go similarity index 100% rename from hpack/encode_test.go rename to http2/hpack/encode_test.go diff --git a/hpack/hpack.go b/http2/hpack/hpack.go similarity index 100% rename from hpack/hpack.go rename to http2/hpack/hpack.go diff --git a/hpack/hpack_test.go b/http2/hpack/hpack_test.go similarity index 100% rename from hpack/hpack_test.go rename to http2/hpack/hpack_test.go diff --git a/hpack/huffman.go b/http2/hpack/huffman.go similarity index 100% rename from hpack/huffman.go rename to http2/hpack/huffman.go diff --git a/hpack/tables.go b/http2/hpack/tables.go similarity index 100% rename from hpack/tables.go rename to http2/hpack/tables.go diff --git a/http2.go b/http2/http2.go similarity index 100% rename from http2.go rename to http2/http2.go diff --git a/http2_test.go b/http2/http2_test.go similarity index 100% rename from http2_test.go rename to http2/http2_test.go diff --git a/pipe.go b/http2/pipe.go similarity index 100% rename from pipe.go rename to http2/pipe.go diff --git a/pipe_test.go b/http2/pipe_test.go similarity index 100% rename from pipe_test.go rename to http2/pipe_test.go diff --git a/priority_test.go b/http2/priority_test.go similarity index 100% rename from priority_test.go rename to http2/priority_test.go diff --git a/server.go b/http2/server.go similarity index 100% rename from server.go rename to http2/server.go diff --git a/server_test.go b/http2/server_test.go similarity index 100% rename from server_test.go rename to http2/server_test.go diff --git a/testdata/draft-ietf-httpbis-http2.xml b/http2/testdata/draft-ietf-httpbis-http2.xml similarity index 100% rename from testdata/draft-ietf-httpbis-http2.xml rename to http2/testdata/draft-ietf-httpbis-http2.xml diff --git a/transport.go b/http2/transport.go similarity index 100% rename from transport.go rename to http2/transport.go diff --git a/transport_test.go b/http2/transport_test.go similarity index 100% rename from transport_test.go rename to http2/transport_test.go diff --git a/write.go b/http2/write.go similarity index 100% rename from write.go rename to http2/write.go diff --git a/writesched.go b/http2/writesched.go similarity index 100% rename from writesched.go rename to http2/writesched.go diff --git a/z_spec_test.go b/http2/z_spec_test.go similarity index 100% rename from z_spec_test.go rename to http2/z_spec_test.go