-
Notifications
You must be signed in to change notification settings - Fork 132
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
Fixes #263: Ability to send arbitrary handles/file descriptors over ipc channel #276
Conversation
Thanks for the pull request, and welcome! The Servo team is excited to review your changes, and you should hear from @emilio (or someone else) soon. |
Addresses Issue #263 |
I'm going to be honest - I don't have any idea when I'll get around to reviewing this massive PR for a feature that I don't need for my own uses of ipc-channel. Sorry. |
Ok. Let me know if there's anything that I can do to make the review easier ... I don't see a way to split it into several smaller PRs unfortunately. |
☔ The latest upstream changes (presumably #284) made this pull request unmergeable. Please resolve the merge conflicts. |
You can send arbitrary handles or file descriptors over an ipc channel by wrapping them into a
crate::platform::Descriptor
. See thetest_transfer_descriptor
function for details on how to do this.