-
Notifications
You must be signed in to change notification settings - Fork 729
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
udpcast: add recipe #831
Closed
Closed
udpcast: add recipe #831
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
kraj
requested changes
Jun 5, 2024
Date: Mon, 20 May 2024 16:36:13 +0200 | ||
Subject: [PATCH] don't depend on pod2man to build | ||
|
||
Upstream-Status: Inappropriate |
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.
it will be good to specify reason why it is Inappropriate,
it fails to build on musl so please address that too - https://errors.yoctoproject.org/Errors/Details/785867/ |
deribaucourt
force-pushed
the
udpcast
branch
2 times, most recently
from
June 6, 2024 15:47
f649237
to
0628b09
Compare
Thanks a lot for your time @kraj
|
udpcast is a file transfer tool that can send data simultaneously to many destinations on a LAN. It is an alternative to uftp which is already in meta-networking. On a lossy network, udpcast provided 10x faster transfer rates with error correction enabled while using a half as much CPU thanks to a simpler algorithm. v2: - Add a patch to fix compilation with musl (submitted upstream) - Add a dependency on perl-native to build manpages instead of removing them with a patch - inherit manpages
added with 8b01302 |
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Jan 27, 2025
License-Update: Still MIT licensed. Just removed a header from the license file. c-ares/c-ares@595cf21 Changelog: https://github.com/c-ares/c-ares/releases/tag/v1.33.0 Features: Add DNS cookie support (RFC7873 + RFC9018) to help prevent off-path cache poisoning attacks. PR openembedded#833 Implement TCP FastOpen (TFO) RFC7413, which will make TCP reconnects 0-RTT on supported systems. PR openembedded#840 Changes: Reorganize source tree. PR openembedded#822 Refactoring of connection handling to prevent code duplication. PR openembedded#839 New dynamic array data structure to prevent simple logic flaws in array handling in various code paths. PR openembedded#841 Bugfixes: ares_destroy() race condition during shutdown due to missing lock. PR openembedded#831 Android: Preserve thread name after attaching it to JVM. PR openembedded#838 Windows UWP (Store) support fix. PR openembedded#845 Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
Jan 28, 2025
License-Update: Still MIT licensed. Just removed a header from the license file. c-ares/c-ares@595cf21 Changelog: https://github.com/c-ares/c-ares/releases/tag/v1.33.0 Features: Add DNS cookie support (RFC7873 + RFC9018) to help prevent off-path cache poisoning attacks. PR openembedded#833 Implement TCP FastOpen (TFO) RFC7413, which will make TCP reconnects 0-RTT on supported systems. PR openembedded#840 Changes: Reorganize source tree. PR openembedded#822 Refactoring of connection handling to prevent code duplication. PR openembedded#839 New dynamic array data structure to prevent simple logic flaws in array handling in various code paths. PR openembedded#841 Bugfixes: ares_destroy() race condition during shutdown due to missing lock. PR openembedded#831 Android: Preserve thread name after attaching it to JVM. PR openembedded#838 Windows UWP (Store) support fix. PR openembedded#845 Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
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.
udpcast is a file transfer tool that can send data simultaneously to many destinations on a LAN.
It is an alternative to uftp which is already in meta-networking.
On a lossy network, udpcast provided 10x faster transfer rates with error correction enabled while using a half as much CPU thanks to a simpler algorithm.