about summary refs log tree commit homepage
path: root/ext/http11/http11_parser_common.rl
diff options
context:
space:
mode:
Diffstat (limited to 'ext/http11/http11_parser_common.rl')
-rw-r--r--ext/http11/http11_parser_common.rl3
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/http11/http11_parser_common.rl b/ext/http11/http11_parser_common.rl
index 4652e33..a70d4da 100644
--- a/ext/http11/http11_parser_common.rl
+++ b/ext/http11/http11_parser_common.rl
@@ -1,6 +1,6 @@
 %%{
   
-  machine http_parser;
+  machine http_parser_common;
 
 #### HTTP PROTOCOL GRAMMAR
 # line endings
@@ -50,4 +50,5 @@
   Request = Request_Line ( message_header )* ( CRLF @done );
 
 main := Request;
+
 }%%