Ben Kimock
Ben Kimock
I'm looking at a problem with unicode output on linux. I think all one would need is to insert this call after the `initscr()` call, but I'm a bit hesitant...
I added `features = ["wide"]` to my Cargo.toml, and unicode output works now! Is there still work to be done? If this feature is incomplete or something I'm interested in...
Unfortunately I have no idea, because I'm not a user of `bincode::serialize`; I've always used this crate with a `Write` impl. My only prior experience with `serialized_size` was when I...
Ah, so people are wrong to read the reference as indicating that `#[inline]` is a hint to the inliner? It sounds like the reference should say that if the attribute...
My concern is that I told a user about the alteration to the way `rustc` does codegen, and they tried to tell me I was wrong by citing the reference....
_I_ know what `#[inline]` does in rustc. My concern is that people are going looking for documentation for it, finding the reference, and concluding that what the reference mentions is...
Good to know that bit of context. I suspect the thing to do here is poke at other DNS implementations.
I don't think it's related. Our application in this case is purely passive; we're trying trying to parse DNS traffic which is observed by a network sensor, and not necessarily...
``` [2021-01-13T14:49:27Z DEBUG trust_dns_proto::udp::udp_stream] created socket successfully [2021-01-13T14:49:27Z DEBUG trust_dns_proto::udp::udp_stream] created socket successfully [2021-01-13T14:49:27Z WARN trust_dns_proto::udp::udp_client_stream] dropped malformed message waiting for id: 30569 err: url parsing error [2021-01-13T14:49:27Z WARN trust_dns_proto::udp::udp_client_stream]...
Trust already reports partial messages to the caller, using `RData::Unknown`. That's probably the wrong tool here, but there's precedent for partial success. I'd prefer the error reporting to be more...