Method: EventMachine::HttpClientParser#initialize
- Defined in:
- ext/http11_client/http11_client.c
#new ⇒ Object
Creates a new parser.
155 156 157 158 159 160 161 162 |
# File 'ext/http11_client/http11_client.c', line 155
VALUE HttpClientParser_init(VALUE self)
{
httpclient_parser *http = NULL;
DATA_GET(self, httpclient_parser, http);
httpclient_parser_init(http);
return self;
}
|