1
0
mirror of https://github.com/jetty/jetty.project.git synced 2025-02-13 18:14:49 +00:00

Merge pull request from eclipse/jetty-9.4.x-4954-minimal-bytecode-exposure

Issue  - Expose header size/length from HttpParser
This commit is contained in:
Joakim Erdfelt 2020-09-15 14:32:49 -05:00 committed by GitHub
commit 78bf1fb410
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -365,6 +365,11 @@ public class HttpParser
return _contentPosition;
}
public int getHeaderLength()
{
return _headerBytes;
}
/**
* Set if a HEAD response is expected
*