commit | c69e825469860c6fbc9f264623f83c3231fed9c6 | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Thu Sep 21 22:01:45 2023 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Thu Sep 21 22:01:45 2023 +0000 |
tree | 1bd715f4c15fc2210e843f1dbd6affb1c9488ec4 | |
parent | bdf5841c8c36cf45e3ff91ef16df3a77a4348a13 [diff] | |
parent | 3417cc0ce9e5be7748eefa3a08b1eed68406e5d7 [diff] |
Snap for 10843824 from 3417cc0ce9e5be7748eefa3a08b1eed68406e5d7 to 24Q1-release Change-Id: Ie5d890e2d32cb6d5dc2929f3147091d4d16eca92
A push parser for the HTTP 1.x protocol. Avoids allocations. No copy. Fast.
Works with no_std
, simply disable the std
Cargo feature.
let mut headers = [httparse::EMPTY_HEADER; 64]; let mut req = httparse::Request::new(&mut headers); let buf = b"GET /index.html HTTP/1.1\r\nHost"; assert!(req.parse(buf)?.is_partial()); // a partial request, so we try again once we have more data let buf = b"GET /index.html HTTP/1.1\r\nHost: example.domain\r\n\r\n"; assert!(req.parse(buf)?.is_complete());
Licensed under either of
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.