[ ] data(coming soon)
[x] Arpa
The parser was designed to be able to run in low flash environments(i.e. ESP32, wasm). To reduce size there is currently the option to disable the "read" or "write" feature, which will strip this functionality from the library. Other than that, there is the option to remove certain TLV parsers from the library, by turning of their respective features. The listed time complexity refers to, if the parser runtime rises with input length. So O(1) means go ahead and O(n) means think before you parse. O(1) parsers are not benchmarked. TLV | feature | Worst case time complexity -- | -- | -- Arpa | dnssdtlvs | O(n) Version | versiontlv | O(1) Channel sequence | syncelecttlvs | O(2n) ElectionParameters[V2] | syncelect_tlvs | O(1)
Do note please, that although the parsers are not yet present, the features are. Also some parsers where bundled into one feature. (For more information on this refer to Milan Stute's dissertation.)
The library is built with the alloc
crate, which makes using it in a no_std environment with an allocator possible.
Although the actual parser was written by me, the reverse engineering of the AWDL protocol was conducted by Milan Stute and SeeMoo-Lab. So kudos to them.. - https://tuprints.ulb.tu-darmstadt.de/11457/1/dissertationmilan-stute2020.pdf - https://github.com/seemoo-lab/owl - https://owlink.org/