Michael Richardson

Results 223 comments of Michael Richardson

"Recap" -- "Preview", not sure whether or not the playback should continue after playing this part. Should the player "keep watching" afterwards.

I would like another button that splits top-bottom, instead of side-to-side. If the exact split is controllable by sliding the divider, then great. Maybe store that percentage somewhere so it...

I also need to make my own TcpStream connections, because they are discovered via mDNS and/or GRASP (RFC8990), and then the TLS SNI is not related to the mDNS name,...

Also, when using SOCKS or Tor, redirects do not mean opening a new socket. When doing custom TLS connections, redirects within a host may be acceptable, but ones elsewhere may...

I just looked into splitting up the http related code (request/response/cookies/middleware/header/body/error) from the connection oriented code into two directories, and eventually maybe into two libraries. My pub use-fu wasn't strong...

> It's probably better to make `MbedTlsConnector` its own package, e.g. `ureq-mbedtls`. That way no one takes the dependency - even for dev work - unless they need it. I'm...

> So if I understand this correctly. You want to extract the server certificate from the established TLS connection? And just because I'm curious, is this to do certificate pinning?...

yes, PEM (or DER) would certainly work. For things that want to pin the server cert (TOFU), that's actually enough: you don't even have to evaluate the bytes, as long...

In my code, which did: ~~~~ let (mut connection, handle, mut messages) = new_connection().map_err(|e| format!("{}", e)).unwrap(); // These flags specify what kinds of broadcast messages we want to listen for....

sigh, distros strike again, tcpdump.org does not recommend setuid on tcpdump, but rather to use capabilities, or just sudo.