fukamachi / fast-http

A fast HTTP request/response parser for Common Lisp.
343 stars 37 forks source link

Fails when headers has "Upgrade-Insecure-Requests: 1" #22

Closed nightshade427 closed 9 years ago

nightshade427 commented 9 years ago

Parse fails when headers has "Upgrade-Insecure-Requests: 1" (chrome by default sends this now)

Seems to die here when it parses "upgade" and then expects ":" right after?

https://github.com/fukamachi/fast-http/blob/master/src/parser.lisp#L303

fukamachi commented 9 years ago

Thank you for reporting. Fixed at #23 by @Rudolph-Miller.

nightshade427 commented 9 years ago

Thanks for fixing it so fast. :)