-
-
Notifications
You must be signed in to change notification settings - Fork 94
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
Send and receive backup over network using QR code #4007
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This adds functionality to send and receive a backup over the network using a QR code. The sender or provider prepares the backup, sets up a server that waits for clients. It provides a ticket in the form of a QR code which contains connection and authentication information. The receiver uses the QR code to connect to the provider and fetches backup, restoring it locally.
2 tasks
Fix progress for getter. Maths. It's hard. Add test for progress.
flub
added a commit
to n0-computer/sendme-legacy
that referenced
this pull request
Feb 14, 2023
This adds a generic utility which can be used to track progress of data transfers by emitting progress via a tokio broadcast channel. This is extracted from the deltachat PR: deltachat/deltachat-core-rust#4007
It has Android fixes merged
This was referenced Mar 18, 2023
10 tasks
rklaehn
pushed a commit
to n0-computer/iroh-blobs
that referenced
this pull request
Oct 22, 2024
This adds a generic utility which can be used to track progress of data transfers by emitting progress via a tokio broadcast channel. This is extracted from the deltachat PR: deltachat/deltachat-core-rust#4007
rklaehn
pushed a commit
to n0-computer/iroh-blobs
that referenced
this pull request
Oct 22, 2024
This adds a generic utility which can be used to track progress of data transfers by emitting progress via a tokio broadcast channel. This is extracted from the deltachat PR: deltachat/deltachat-core-rust#4007
matheus23
pushed a commit
to n0-computer/iroh-doctor
that referenced
this pull request
Oct 22, 2024
This adds a generic utility which can be used to track progress of data transfers by emitting progress via a tokio broadcast channel. This is extracted from the deltachat PR: deltachat/deltachat-core-rust#4007
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This adds functionality to send and receive a backup over the network using a QR code.
The sender or provider prepares the backup, sets up a server that waits for clients. It provides a ticket in the form of a QR code which contains connection and authentication information.
The receiver uses the QR code to connect to the provider and fetches backup, restoring it locally.
Status
This is ready for review and functions fully.
Tasks
Based on review comments these are the current tasks:
BackupProvider
as state in theContext
provide_backup
blocking, return a "handle"sendmeiroh