-
-
Notifications
You must be signed in to change notification settings - Fork 345
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The remote HTTP server is returning SSL packets that are 9K which is …
…bigger than our default 4K. This change increases the SSL max buffer size to 16K and recommends the use of BearSSL as it handles better bigger SSL packets.
- Loading branch information
1 parent
da225ba
commit 9eb1158
Showing
2 changed files
with
15 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
## size of the flash chip | ||
SPI_SIZE ?= 4M | ||
|
||
ENABLE_SSL = 1 | ||
## Prefer BearSSL as it can handle more gracefully big SSL packets. | ||
ENABLE_SSL ?= Bearssl |