Initial implementation of a new HTTP library based on pipelines.
authorRobert Sesek <rsesek@bluestatic.org>
Mon, 28 Nov 2016 07:13:47 +0000 (02:13 -0500)
committerRobert Sesek <rsesek@bluestatic.org>
Mon, 28 Nov 2016 07:13:47 +0000 (02:13 -0500)
commit4468833c46108f3ca451796a6a5f6824e6abb021
tree1a2195e25d9b1a55a89b8d61526e56d46e953e8e
parentdb920ccbd814f3068a7447f2f28673d437007bd4
Initial implementation of a new HTTP library based on pipelines.

A Pipeline is a series of chained Middleware that execute in order to produce a
response.

The goal is for the http2 subsystem to implement the same concepts as http, but
with looser coupling between the controllers and output filters.
http2/api.php [new file with mode: 0644]
http2/middleware.php [new file with mode: 0644]
http2/pipeline.php [new file with mode: 0644]
http2/request.php [new file with mode: 0644]
http2/response.php [new file with mode: 0644]