[PR #112] [MERGED] support tokio-openssl for 100% openssl #1245

Closed
opened 2026-03-16 01:55:54 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hickory-dns/hickory-dns/pull/112
Author: @bluejekyll
Created: 4/1/2017
Status: Merged
Merged: 4/8/2017
Merged by: @bluejekyll

Base: masterHead: tokio-openssl


📝 Commits (10+)

  • fd6e40e support tokio-openssl for 100% openssl
  • d8d4eb4 dedup some test config
  • 2c472a2 fixup server to only use tokio-openssl for now
  • ffbfdd5 fix build on linux
  • 3c543e7 fix target_os=macos just tls-native
  • 9525de2 scripts etc and tests for native-tls
  • 3b0a00e get cert generation and tests passing
  • 41991db fix some compilation issues on linux
  • 1e47681 fix server uses of tls
  • e2c76b2 add integration test for native-tls module

📊 Changes

45 files changed (+1911 additions, -788 deletions)

View changed files

📝 .travis.yml (+5 -0)
📝 Cargo.lock (+70 -48)
📝 Cargo.toml (+1 -1)
📝 client/Cargo.toml (+3 -11)
📝 client/src/lib.rs (+18 -5)
client/src/tests.rs (+134 -0)
📝 client/src/tls/mod.rs (+3 -0)
client/src/tls/tests.rs (+243 -0)
📝 client/src/tls/tls_client_connection.rs (+0 -14)
📝 client/src/tls/tls_client_stream.rs (+2 -14)
📝 client/src/tls/tls_stream.rs (+70 -86)
client/tests/tls_stream_tests.rs (+0 -325)
native-tls/Cargo.toml (+57 -0)
native-tls/src/lib.rs (+34 -0)
native-tls/src/tests.rs (+212 -0)
native-tls/src/tls_client_connection.rs (+92 -0)
native-tls/src/tls_client_stream.rs (+69 -0)
native-tls/src/tls_stream.rs (+170 -0)
📝 scripts/docker_ftest.sh (+1 -1)
scripts/gen_certs.sh (+86 -0)

...and 25 more files

📄 Description

This allows only OpenSSL to be used for TLS.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/hickory-dns/hickory-dns/pull/112 **Author:** [@bluejekyll](https://github.com/bluejekyll) **Created:** 4/1/2017 **Status:** ✅ Merged **Merged:** 4/8/2017 **Merged by:** [@bluejekyll](https://github.com/bluejekyll) **Base:** `master` ← **Head:** `tokio-openssl` --- ### 📝 Commits (10+) - [`fd6e40e`](https://github.com/hickory-dns/hickory-dns/commit/fd6e40e40025921f5ffe1450cd843963ba2f8cb2) support tokio-openssl for 100% openssl - [`d8d4eb4`](https://github.com/hickory-dns/hickory-dns/commit/d8d4eb426f1eef64726762732fcca86bc3c7e17b) dedup some test config - [`2c472a2`](https://github.com/hickory-dns/hickory-dns/commit/2c472a20341aabac5b62a4d19336588584eb6274) fixup server to only use tokio-openssl for now - [`ffbfdd5`](https://github.com/hickory-dns/hickory-dns/commit/ffbfdd5334e72695272d64e281c4a0c374a83e16) fix build on linux - [`3c543e7`](https://github.com/hickory-dns/hickory-dns/commit/3c543e762b1512075c9061286df8e597d6b087ae) fix target_os=macos just tls-native - [`9525de2`](https://github.com/hickory-dns/hickory-dns/commit/9525de22e5c1c161de492598aa15e6229ac1d873) scripts etc and tests for native-tls - [`3b0a00e`](https://github.com/hickory-dns/hickory-dns/commit/3b0a00ea2b49451ffa4cf788711d61a285f53671) get cert generation and tests passing - [`41991db`](https://github.com/hickory-dns/hickory-dns/commit/41991db35cef520af4e8289d6032bb41bdf24384) fix some compilation issues on linux - [`1e47681`](https://github.com/hickory-dns/hickory-dns/commit/1e476819e5a4034c52ee0d92d4c7d893cdf2e8bf) fix server uses of tls - [`e2c76b2`](https://github.com/hickory-dns/hickory-dns/commit/e2c76b21ad19fe891b0a3ac096e1b75189cd6624) add integration test for native-tls module ### 📊 Changes **45 files changed** (+1911 additions, -788 deletions) <details> <summary>View changed files</summary> 📝 `.travis.yml` (+5 -0) 📝 `Cargo.lock` (+70 -48) 📝 `Cargo.toml` (+1 -1) 📝 `client/Cargo.toml` (+3 -11) 📝 `client/src/lib.rs` (+18 -5) ➕ `client/src/tests.rs` (+134 -0) 📝 `client/src/tls/mod.rs` (+3 -0) ➕ `client/src/tls/tests.rs` (+243 -0) 📝 `client/src/tls/tls_client_connection.rs` (+0 -14) 📝 `client/src/tls/tls_client_stream.rs` (+2 -14) 📝 `client/src/tls/tls_stream.rs` (+70 -86) ➖ `client/tests/tls_stream_tests.rs` (+0 -325) ➕ `native-tls/Cargo.toml` (+57 -0) ➕ `native-tls/src/lib.rs` (+34 -0) ➕ `native-tls/src/tests.rs` (+212 -0) ➕ `native-tls/src/tls_client_connection.rs` (+92 -0) ➕ `native-tls/src/tls_client_stream.rs` (+69 -0) ➕ `native-tls/src/tls_stream.rs` (+170 -0) 📝 `scripts/docker_ftest.sh` (+1 -1) ➕ `scripts/gen_certs.sh` (+86 -0) _...and 25 more files_ </details> ### 📄 Description This allows only OpenSSL to be used for TLS. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-16 01:55:54 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/hickory-dns#1245
No description provided.