(byte[] data)
| 65 | private boolean flag_dont_touch_content_length = false; |
| 66 | |
| 67 | public static Http create(byte[] data) throws Exception { |
| 68 | return new Http(data, false); |
| 69 | } |
| 70 | |
| 71 | public static Http createWithoutTouchingContentLength(byte[] data) throws Exception { |
| 72 | return new Http(data, true); |
no outgoing calls