Hey there, I’d like to access the IP address of a requestor of a certificate in the cert_resolver function in the following struct: https://docs.rs/actix-tls/3.0.3/actix_tls/accept/rustls/reexports/struct.ServerConfig.html
I attempted to change this in rustls, but they said Actix is the appropriate place to make this change: https://github.com/rustls/rustls/issues/1147
How should I approach this problem? Is an issue necessary on GitHub?
Common configuration for a set of server sessions.
GitHub
Hey there, In the API documentation (https://docs.rs/rustls/0.20.7/rustls/server/struct.ClientHello.html), I don't see any option to query the IP address of the sender of the ClientHello me...