-
Notifications
You must be signed in to change notification settings - Fork 220
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(chatffi): tor configuration #5752
feat(chatffi): tor configuration #5752
Conversation
5f72108
to
b916646
Compare
b916646
to
ddd5f70
Compare
Test Results (Integration tests) 2 files + 2 11 suites +11 15m 30s ⏱️ + 15m 30s For more details on these failures, see this check. Results for commit 3b29409. ± Comparison against base commit 45c20a3. ♻️ This comment has been updated with latest results. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just one question
base_layer/chat_ffi/src/lib.rs
Outdated
@@ -69,6 +71,9 @@ mod consts { | |||
include!(concat!(env!("OUT_DIR"), "/consts.rs")); | |||
} | |||
|
|||
#[derive(Debug, PartialEq, Clone)] | |||
pub struct ByteVector(Vec<c_uchar>); // declared like this so that it can be exposed to external header |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if it needs exposing, then it needs rep_c as well?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I copied it verbatim from the wallet, which doesn't use rep_c for it.
Which is a roundabout way of saying I'm hesitant to "fix" something not broken :D
Description
Allow more configuration options for TOR
Motivation and Context
Mobile doesn't align with the tor transport config defaults that were being applied, so let's allow for a specific configuration.
How Has This Been Tested?
CI
Breaking Changes