On May 30, 7:07 pm, AJ ONeal <[email protected]> wrote: > I'm working on a debugging tool and want to show the actual raw http > headers (with original case, position, \r\n etc). > > Is there any way to go about that without implementing my own http server > with the tcp library?
Why not just create a tcp server, log the raw input (if that's what you want), then use the http_parser library manually to parse the headers/body? -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en
