[PR #68] [MERGED] Bfry/split client server #1218

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

📋 Pull Request Information

Original PR: https://github.com/hickory-dns/hickory-dns/pull/68
Author: @bluejekyll
Created: 11/8/2016
Status: Merged
Merged: 11/9/2016
Merged by: @bluejekyll

Base: masterHead: bfry/split_client_server


📝 Commits (10+)

  • 85b08fc initial split of server
  • 2907f85 split client and server crates
  • 11c1834 create scripts for running tests across crates
  • 4aaf6c1 fix target location in tests
  • ad878cd trying different travis settings for getting kcov working
  • 49dbf44 fix directory change in kcov setup
  • 388e36d fixing for loop for the kcov tests
  • 3e71c6d added some env config for config tests
  • 1eea6b9 adding back sudo settings, and additional coveralls merging config
  • 3c8b21e fix exclude paths

📊 Changes

128 files changed (+3855 additions, -2480 deletions)

View changed files

📝 .gitignore (+1 -0)
📝 .travis.yml (+6 -6)
📝 CHANGELOG.md (+5 -0)
📝 Cargo.lock (+22 -2)
📝 Cargo.toml (+2 -82)
client/Cargo.lock (+606 -0)
client/Cargo.toml (+59 -0)
📝 client/build.rs (+0 -0)
📝 client/src/client/client.rs (+0 -555)
client/src/client/client_connection.rs (+30 -0)
📝 client/src/client/client_future.rs (+0 -521)
📝 client/src/client/memoize_client_handle.rs (+0 -0)
📝 client/src/client/mod.rs (+1 -6)
📝 client/src/client/rc_future.rs (+0 -0)
📝 client/src/client/retry_client_handle.rs (+0 -0)
📝 client/src/client/secure_client_handle.rs (+0 -256)
📝 client/src/error/client_error.rs (+0 -0)
📝 client/src/error/decode_error.rs (+0 -0)
📝 client/src/error/encode_error.rs (+0 -0)
📝 client/src/error/lexer_error.rs (+0 -0)

...and 80 more files

📄 Description

this fixes both #43 and #52


🔄 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/68 **Author:** [@bluejekyll](https://github.com/bluejekyll) **Created:** 11/8/2016 **Status:** ✅ Merged **Merged:** 11/9/2016 **Merged by:** [@bluejekyll](https://github.com/bluejekyll) **Base:** `master` ← **Head:** `bfry/split_client_server` --- ### 📝 Commits (10+) - [`85b08fc`](https://github.com/hickory-dns/hickory-dns/commit/85b08fc8d969b2e2f58c8c8bf25d1c7befd6420f) initial split of server - [`2907f85`](https://github.com/hickory-dns/hickory-dns/commit/2907f85bbeb32a4288837f57a811aa63b932f966) split client and server crates - [`11c1834`](https://github.com/hickory-dns/hickory-dns/commit/11c1834c34889beee8ce3e3ee7a62db616d42050) create scripts for running tests across crates - [`4aaf6c1`](https://github.com/hickory-dns/hickory-dns/commit/4aaf6c15fd95d9dfca9c59011205e92ed0dfdee6) fix target location in tests - [`ad878cd`](https://github.com/hickory-dns/hickory-dns/commit/ad878cd590da4a048167d680d8c7ffbf454912f9) trying different travis settings for getting kcov working - [`49dbf44`](https://github.com/hickory-dns/hickory-dns/commit/49dbf4473f38c7ef03ab52109ae041ecbb0c11cf) fix directory change in kcov setup - [`388e36d`](https://github.com/hickory-dns/hickory-dns/commit/388e36d96c64b73f8912815f7bb41abc478123a5) fixing for loop for the kcov tests - [`3e71c6d`](https://github.com/hickory-dns/hickory-dns/commit/3e71c6d4dde6cd251ed10272266ff6d91cb5bdd5) added some env config for config tests - [`1eea6b9`](https://github.com/hickory-dns/hickory-dns/commit/1eea6b9173cbff1a1800b7aa07ca640c2c2b2910) adding back sudo settings, and additional coveralls merging config - [`3c8b21e`](https://github.com/hickory-dns/hickory-dns/commit/3c8b21e4ddd7149b99338d06a0ee1dc8c40ad2a5) fix exclude paths ### 📊 Changes **128 files changed** (+3855 additions, -2480 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+1 -0) 📝 `.travis.yml` (+6 -6) 📝 `CHANGELOG.md` (+5 -0) 📝 `Cargo.lock` (+22 -2) 📝 `Cargo.toml` (+2 -82) ➕ `client/Cargo.lock` (+606 -0) ➕ `client/Cargo.toml` (+59 -0) 📝 `client/build.rs` (+0 -0) 📝 `client/src/client/client.rs` (+0 -555) ➕ `client/src/client/client_connection.rs` (+30 -0) 📝 `client/src/client/client_future.rs` (+0 -521) 📝 `client/src/client/memoize_client_handle.rs` (+0 -0) 📝 `client/src/client/mod.rs` (+1 -6) 📝 `client/src/client/rc_future.rs` (+0 -0) 📝 `client/src/client/retry_client_handle.rs` (+0 -0) 📝 `client/src/client/secure_client_handle.rs` (+0 -256) 📝 `client/src/error/client_error.rs` (+0 -0) 📝 `client/src/error/decode_error.rs` (+0 -0) 📝 `client/src/error/encode_error.rs` (+0 -0) 📝 `client/src/error/lexer_error.rs` (+0 -0) _...and 80 more files_ </details> ### 📄 Description this fixes both #43 and #52 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-16 01:54:33 +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#1218
No description provided.