Skip to content

Commit

Permalink
fixup! Add support for SSL_group_to_name and SSL_get_negotiated_group
Browse files Browse the repository at this point in the history
  • Loading branch information
romen committed Mar 8, 2024
1 parent 22c085c commit 0d838a5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion openssl/src/ssl/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@
//! ```
#[cfg(ossl300)]
use crate::cvt_long;
#[cfg(ossl300)]
use crate::cvt_p_const;
use crate::dh::{Dh, DhRef};
#[cfg(all(ossl101, not(ossl110)))]
use crate::ec::EcKey;
Expand All @@ -82,7 +84,7 @@ use crate::x509::store::{X509Store, X509StoreBuilderRef, X509StoreRef};
#[cfg(any(ossl102, boringssl, libressl261))]
use crate::x509::verify::X509VerifyParamRef;
use crate::x509::{X509Name, X509Ref, X509StoreContextRef, X509VerifyResult, X509};
use crate::{cvt, cvt_n, cvt_p, cvt_p_const, init};
use crate::{cvt, cvt_n, cvt_p, init};
use bitflags::bitflags;
use cfg_if::cfg_if;
use foreign_types::{ForeignType, ForeignTypeRef, Opaque};
Expand Down

0 comments on commit 0d838a5

Please sign in to comment.