-
Notifications
You must be signed in to change notification settings - Fork 13
Description
I'm trying to use this module as an http2 server. I've got a client which opens a connection to the server and streams objects. The tcp connection forms and I see the client streaming objects. I'm using the example code provided here (http://search.cpan.org/~crux/Protocol-HTTP2-0.15/lib/Protocol/HTTP2/Server.pm). In the $handle->on_read, I can dump out the $handle->{rbuf} info I see the raw data coming from the client. in the code, this information is then past to $server->feed{$handle->{rbuf}} which I think takes the streaming data and decodes.
What I'm hoping to find is a way to access the reconstructed objects-- how would I get access to an entire reconstructured object? It's not clear how I gain access to these object in the server code.
Thanks