Sha256: 9f10e2eb5383782b5bdf208e6fa8fe32cb7fe6dff1c00e9d5c6cf42b389b8911
Contents?: true
Size: 586 Bytes
Versions: 8
Compression:
Stored size: 586 Bytes
Contents
package http_parser; public class HTTPParser extends http_parser.lolevel.HTTPParser { public HTTPParser() { super(); } public HTTPParser(ParserType type) { super(type); } public int getMajor() { return super.http_major; } public int getMinor() { return super.http_minor; } public int getStatusCode() { return super.status_code; } public HTTPMethod getHTTPMethod() { return super.method; } public boolean getUpgrade() { return super.upgrade; } public boolean shouldKeepAlive() { return super.http_should_keep_alive(); } }
Version data entries
8 entries across 8 versions & 1 rubygems