forked from openwrt/openwrt
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #109 from qosmio/qualcommax-6.x-nss-wifi
sync 27/4
- Loading branch information
Showing
283 changed files
with
3,998 additions
and
48,792 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ Signed-off-by: Glenn Strauss <[email protected]> | |
|
||
--- a/include/mbedtls/x509_crt.h | ||
+++ b/include/mbedtls/x509_crt.h | ||
@@ -608,7 +608,7 @@ int mbedtls_x509_crt_verify_info(char *b | ||
@@ -596,7 +596,7 @@ int mbedtls_x509_crt_verify_info(char *b | ||
* \param cn The expected Common Name. This will be checked to be | ||
* present in the certificate's subjectAltNames extension or, | ||
* if this extension is absent, as a CN component in its | ||
|
@@ -22,7 +22,7 @@ Signed-off-by: Glenn Strauss <[email protected]> | |
* If the verification couldn't be completed, the flag value is | ||
--- a/library/x509_crt.c | ||
+++ b/library/x509_crt.c | ||
@@ -57,6 +57,10 @@ | ||
@@ -45,6 +45,10 @@ | ||
|
||
#if defined(MBEDTLS_HAVE_TIME) | ||
#if defined(_WIN32) && !defined(EFIX64) && !defined(EFI32) | ||
|
@@ -33,7 +33,7 @@ Signed-off-by: Glenn Strauss <[email protected]> | |
#include <windows.h> | ||
#else | ||
#include <time.h> | ||
@@ -3002,6 +3006,61 @@ find_parent: | ||
@@ -2990,6 +2994,61 @@ find_parent: | ||
} | ||
} | ||
|
||
|
@@ -95,7 +95,7 @@ Signed-off-by: Glenn Strauss <[email protected]> | |
/* | ||
* Check for CN match | ||
*/ | ||
@@ -3022,24 +3081,51 @@ static int x509_crt_check_cn(const mbedt | ||
@@ -3010,24 +3069,51 @@ static int x509_crt_check_cn(const mbedt | ||
return -1; | ||
} | ||
|
||
|
@@ -158,7 +158,7 @@ Signed-off-by: Glenn Strauss <[email protected]> | |
} | ||
|
||
/* | ||
@@ -3050,31 +3136,23 @@ static void x509_crt_verify_name(const m | ||
@@ -3038,31 +3124,23 @@ static void x509_crt_verify_name(const m | ||
uint32_t *flags) | ||
{ | ||
const mbedtls_x509_name *name; | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,12 +25,12 @@ Signed-off-by: Rafał Miłecki <[email protected]> | |
#define NETIF_F_UPPER_DISABLES NETIF_F_LRO | ||
|
||
/* changeable features with no special hardware requirements */ | ||
-#define NETIF_F_SOFT_FEATURES (NETIF_F_GSO | NETIF_F_GRO) | ||
-#define NETIF_F_SOFT_FEATURES (NETIF_F_GSO | NETIF_F_GRO | NETIF_F_GRO_FRAGLIST) | ||
+#define NETIF_F_SOFT_FEATURES (NETIF_F_GSO) | ||
|
||
/* Changeable features with no special hardware requirements that defaults to off. */ | ||
-#define NETIF_F_SOFT_FEATURES_OFF (NETIF_F_GRO_FRAGLIST | NETIF_F_GRO_UDP_FWD) | ||
+#define NETIF_F_SOFT_FEATURES_OFF (NETIF_F_GRO_FRAGLIST | NETIF_F_GRO_UDP_FWD | NETIF_F_GRO) | ||
-#define NETIF_F_SOFT_FEATURES_OFF (NETIF_F_GRO_UDP_FWD) | ||
+#define NETIF_F_SOFT_FEATURES_OFF (NETIF_F_GRO_UDP_FWD | NETIF_F_GRO | NETIF_F_GRO_FRAGLIST) | ||
|
||
#define NETIF_F_VLAN_FEATURES (NETIF_F_HW_VLAN_CTAG_FILTER | \ | ||
NETIF_F_HW_VLAN_CTAG_RX | \ |
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 |
---|---|---|
|
@@ -25,12 +25,12 @@ Signed-off-by: Rafał Miłecki <[email protected]> | |
#define NETIF_F_UPPER_DISABLES NETIF_F_LRO | ||
|
||
/* changeable features with no special hardware requirements */ | ||
-#define NETIF_F_SOFT_FEATURES (NETIF_F_GSO | NETIF_F_GRO) | ||
-#define NETIF_F_SOFT_FEATURES (NETIF_F_GSO | NETIF_F_GRO | NETIF_F_GRO_FRAGLIST) | ||
+#define NETIF_F_SOFT_FEATURES (NETIF_F_GSO) | ||
|
||
/* Changeable features with no special hardware requirements that defaults to off. */ | ||
-#define NETIF_F_SOFT_FEATURES_OFF (NETIF_F_GRO_FRAGLIST | NETIF_F_GRO_UDP_FWD) | ||
+#define NETIF_F_SOFT_FEATURES_OFF (NETIF_F_GRO_FRAGLIST | NETIF_F_GRO_UDP_FWD | NETIF_F_GRO) | ||
-#define NETIF_F_SOFT_FEATURES_OFF (NETIF_F_GRO_UDP_FWD) | ||
+#define NETIF_F_SOFT_FEATURES_OFF (NETIF_F_GRO_UDP_FWD | NETIF_F_GRO | NETIF_F_GRO_FRAGLIST) | ||
|
||
#define NETIF_F_VLAN_FEATURES (NETIF_F_HW_VLAN_CTAG_FILTER | \ | ||
NETIF_F_HW_VLAN_CTAG_RX | \ |
Oops, something went wrong.