diff options
| author | Paul Kehrer <[email protected]> | 2015-02-23 19:39:23 -0600 |
|---|---|---|
| committer | Paul Kehrer <[email protected]> | 2015-02-23 19:39:23 -0600 |
| commit | 8940bd767b908e886dc8ef83ca59e5e5f844a06e (patch) | |
| tree | 38c42f141900033fabcc2d3988010cbccf8e6860 /openssl/src/lib.rs | |
| parent | add support for SSL_CTX_set_options and SSL_CTX_get_options (diff) | |
| download | rust-openssl-8940bd767b908e886dc8ef83ca59e5e5f844a06e.tar.xz rust-openssl-8940bd767b908e886dc8ef83ca59e5e5f844a06e.zip | |
add support for SSL_CTX_clear_options and use bitflags
Diffstat (limited to 'openssl/src/lib.rs')
| -rw-r--r-- | openssl/src/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/openssl/src/lib.rs b/openssl/src/lib.rs index 77b6313c..042e4a2e 100644 --- a/openssl/src/lib.rs +++ b/openssl/src/lib.rs @@ -1,6 +1,9 @@ #![feature(unsafe_destructor, core, old_io, std_misc, libc, old_path)] #![doc(html_root_url="https://sfackler.github.io/rust-openssl/doc/openssl")] +#[macro_use] +extern crate bitflags; + extern crate libc; #[cfg(test)] extern crate "rustc-serialize" as serialize; |