You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let https = HttpsConnectorBuilder::new().with_native_roots().https_only().with_server_name("override_server_name").enable_http1().build();// change it tolet https = HttpsConnectorBuilder::new().with_native_roots().https_only().with_server_name(|request| {// Compute server namereturn"override_server_name";}).enable_http1().build();
This allows different server names to be injected for different ip requests
The text was updated successfully, but these errors were encountered:
ghost
changed the title
More elaborate custom SNIs
More elaborate custom server name
Mar 13, 2023
This allows different server names to be injected for different ip requests
The text was updated successfully, but these errors were encountered: