diff options
| author | Ryan Dahl <ry@tinyclouds.org> | 2010-01-24 11:21:45 -0800 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2010-01-24 11:21:45 -0800 |
| commit | 42ee16978e81a0f1fba0768e163b5e9584178fa3 (patch) | |
| tree | c66adcef4b5e46eb80e57f729af42b466508d3fc /src/node_http_parser.h | |
| parent | 6f738d6e7a90f5c7659074340baaeb098c9e40f7 (diff) | |
| download | node-42ee16978e81a0f1fba0768e163b5e9584178fa3.tar.gz | |
Implement new http-parser binding using Buffer
Diffstat (limited to 'src/node_http_parser.h')
| -rw-r--r-- | src/node_http_parser.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/node_http_parser.h b/src/node_http_parser.h new file mode 100644 index 000000000..78ba175ee --- /dev/null +++ b/src/node_http_parser.h @@ -0,0 +1,12 @@ +#ifndef NODE_HTTP_PARSER +#define NODE_HTTP_PARSER + +#include <v8.h> + +namespace node { + +void InitHttpParser(v8::Handle<v8::Object> target); + +} + +#endif // NODE_HTTP_PARSER |
