libdnspacket icon indicating copy to clipboard operation
libdnspacket copied to clipboard

A single file cpp17 header only DNS packet parser/builder.

Results 1 libdnspacket issues
Sort by recently updated
recently updated
newest added

I assume that this library is based on C++17 (by using [`std::variant`](https://github.com/amyhaber/libdnspacket/blob/master/dns.hpp#L11)) — so wouldn't it be better to replace `std::tuple` with `std::optional` in the [`Parse`](https://github.com/amyhaber/libdnspacket/blob/cf6775a3e97bc8ee220e7590ca5f6e08a085bcc2/dns.hpp#L960) function? Suggestion: ```cpp std::optional...