AnyEvent-HTTP-Server-II icon indicating copy to clipboard operation
AnyEvent-HTTP-Server-II copied to clipboard

Fast Asynchronous HTTP/1.1 Server

Results 4 AnyEvent-HTTP-Server-II issues
Sort by recently updated
recently updated
newest added

it would be nice to be on CPAN

Hi there, I tried using this module under 5.20.1 and I get the following errors: Parse error at /opt/perl/lib/site_perl/5.20.1/AnyEvent/HTTP/Server/Kit.pm line 84. syntax error at /opt/perl/lib/site_perl/5.20.1/AnyEvent/HTTP/Server/Kit.pm line 84, near "$;" syntax...

Suggesting following patch to make form work. Example code: ``` return { # There will be a request-object as 1st parameter, but it cannot be used. form => sub {...

A request header like `Cookie: x=1; y=2; z=3` was not parsed correctly: we got $request->headers containing `"cookies+y"` and `"cookies+z"` keys, but not `"cookies+x"` The present pull request contains test and...