summaryrefslogtreecommitdiff
path: root/src/node_http_parser.h
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2010-01-24 11:21:45 -0800
committerRyan Dahl <ry@tinyclouds.org>2010-01-24 11:21:45 -0800
commit42ee16978e81a0f1fba0768e163b5e9584178fa3 (patch)
treec66adcef4b5e46eb80e57f729af42b466508d3fc /src/node_http_parser.h
parent6f738d6e7a90f5c7659074340baaeb098c9e40f7 (diff)
downloadnode-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.h12
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