summaryrefslogtreecommitdiff
path: root/FreeRTOS-Plus/Demo/Common/Demo_IP_Protocols
Commit message (Collapse)AuthorAgeFilesLines
* Apply release changes to main branch (#759)johnrhen2021-12-2310-20/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Update History.txt and README.md for December release (#744) * Update History.txt and README.md for release * Bump mbedtls submodule to v2.28.0 (#745) * Patch project files for mbedtls (#751) * Apply group 1 patches * Apply patches for group 2 * Update project files for mbedTLS new version Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com> * Fix warnings in projects Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com> * Fix warnings in HTTP_S3_Download demo Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com> Co-authored-by: Gaurav Aggarwal <aggarg@amazon.com> * Update changelog and history for corePKCS11 update (#752) * Update submodule pointer and manifest.yml for corePKCS11 (#754) * Update readme and history.txt to show that Sigv4 is a newly added library (#756) * Revert update to v143 of VS toolset (#757) * [AUTO][RELEASE]: Bump file header version to "202112.00" * Update file headers to satisfy core checks Co-authored-by: Muneeb Ahmed <54290492+muneebahmed10@users.noreply.github.com> Co-authored-by: Gaurav Aggarwal <aggarg@amazon.com> Co-authored-by: johnrhen <johnrhen@users.noreply.github.com>
* Updated submodule libraries to latest release (#667)tianmc12021-07-231-2/+2
| | | | | | | | | | | | | | | | | | * Updated submodule libraries to latest release * Updated pointer for FreeRTOS-Plus-TCP * Updated README about SNTP * Updated link for coreSNTP on freertos.org * Updated corePKCS11 to 'update-pkcs11submodule' branch for testing * Update corePKCS11 version in manifest.yml * Updated corePKCS11 pointer to v3.1.0 Co-authored-by: Oscar Michael Abrina <abrinao@amazon.com> Co-authored-by: Archit Aggarwal <architag@amazon.com>
* Hygiene changes of old Demo folders and temporary removal of submodules (#666)Archit Aggarwal2021-07-236-2/+10
| | | | | | | * Remove submodules of community and partner contribution repos, and stale directory of FreeRTOS+UDP * Obselete NTP demo and rename of HTTP server demo folder * Update manifest.yml
* Multiple tidy up and corrections preparing for release (#390)RichardBarry2020-11-098-0/+29
| | | | | | | | | | | | | | | | | | | * Update to the WolfSSL FIPS ready demo: Add a debug break point into the configASSERT() implementation along with a comment telling users how to update the integrity check hash if they hit the breakpoint. * Updates in the root directory: Remove "New - Stream and Message Buffers.url" as the feature is no longer new, and edit the readme.md file as the repo now contains 'core' libraries in addition to 'FreeRTOS+' libraries. * FreeRTOS-Plus/Source/Utilities: Add readme files and links to documentation. * Application-Protocols: Add readme and URL links. * Remove Index.html from the end of a URL in the readme.txt file. * Demo-IP-Protocols: Add readme.txt files and code comments saying the protocols are not intended for production use. * coreMQTT: Remove links to deprecated documentation, add readme and correct links to documentation. * General: Correct URLs in source files and .url files. * Update readme.txt
* Check socket binding result before doing anything with socket. (This is to ↵Yuhui.Zheng2019-12-041-3/+9
| | | | | | | | | | | | | address ARG findings.) Breaking the single return rule here, due to precedent violation at line 1039 and 1144. prvTransferConnect() now returns: - pdTRUE: everything's good. pdTRUE = 1. - -pdFREERTOS_ERRNO_ENOMEM: FreeRTOS_socket() failed. -pdFREERTOS_ERRNO_ENOMEM = -12. - -pdFREERTOS_ERRNO_EINVAL || -pdFREERTOS_ERRNO_ECANCELED: FreeRTOS_bind() failed. Negative values. Thus, at line 569 and line 617, needs to check != pdTRUE instead of == pdFALSE. This commit is done on behalf of Alfred.
* Minor bug fix in NTPDemo.c -> use of FREERTOS_INVALID_SOCKET in place of NULL.Richard Barry2019-09-041-1/+1
| | | | | Update trace recorder code to account for uxPendedTicks renaming to xPendedTicks.
* Remove the simple UDP client/server tasks from the MQTT demo as the demo's ↵Richard Barry2019-07-231-1/+1
| | | | | | | | network connection can be tested more easily just by pinging it. Tidy up the iot_config.h header files a little.
* Fix some build issues in older kernel demo projects.Richard Barry2018-08-2212-0/+4595
Update to V2.0.7 of the TCP/IP stack: + Multiple security improvements and fixes in packet parsing routines, DNS caching, and TCP sequence number and ID generation. + Disable NBNS and LLMNR by default. + Add TCP hang protection by default. We thank Ori Karliner of Zimperium zLabs Team for reporting these issues.