-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable DETACH_KERNEL_DRIVER (all Linux), ENABLE_ZEROCOPY (Linux not A…
…RM), update patches, and bump post version (#12) automerged PR by conda-forge/automerge-action
- Loading branch information
Showing
10 changed files
with
196 additions
and
67 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
25 changes: 25 additions & 0 deletions
25
recipe/0010-fix-rtl_tcp-error-on-windows-when-hints-not-initiali.patch
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 | ||
From: rtlsdrblog <[email protected]> | ||
Date: Thu, 31 Aug 2023 17:37:22 +1200 | ||
Subject: [PATCH] fix rtl_tcp error on windows when hints not initialized to 0 | ||
|
||
--- | ||
src/rtl_tcp.c | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/src/rtl_tcp.c b/src/rtl_tcp.c | ||
index 772a403..78d625a 100644 | ||
--- a/src/rtl_tcp.c | ||
+++ b/src/rtl_tcp.c | ||
@@ -386,7 +386,7 @@ int main(int argc, char **argv) | ||
struct sockaddr_storage local, remote; | ||
struct addrinfo *ai; | ||
struct addrinfo *aiHead; | ||
- struct addrinfo hints; | ||
+ struct addrinfo hints = { 0 }; | ||
char hostinfo[NI_MAXHOST]; | ||
char portinfo[NI_MAXSERV]; | ||
char remhostinfo[NI_MAXHOST]; | ||
-- | ||
2.40.0 | ||
|
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 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 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