Skip to content

Commit

Permalink
Upload secure-sockets 1.0.1.446
Browse files Browse the repository at this point in the history
  • Loading branch information
gitlab-runner committed May 8, 2020
1 parent 697301f commit 2d153eb
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 4 deletions.
3 changes: 3 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ Refer to the [README.md](./README.md) for a complete description of the secure s
| UDP, IPv6 and DTLS are not supported in the secure sockets library | No workaround. Support will be added in a future release |

## Changelog
### v1.0.1
* Code snippets added to the documentation

### v1.0.0
* Initial release for secure sockets library
* Provides network abstraction APIs for underlying lwIP stack and mbedTLS library
Expand Down
14 changes: 12 additions & 2 deletions docs/api_reference_manual/html/index.html

Large diffs are not rendered by default.

23 changes: 22 additions & 1 deletion include/cy_secure_sockets.h
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,27 @@ This library and its features are supported on the following Cypress platforms:
* \endcode
* * In order to ease integration of Wi-Fi connectivity components to code examples, this secure socket library has been bundled into the [Wi-Fi Middleware Core Library v2.0.0](https://github.com/cypresssemiconductorco/wifi-mw-core)
*
********************************************************************************
* \section section_code_snippet Code Snippets
********************************************************************************
********************************************************************************
* \subsection snip1 Code Snippet1: Create TCP Socket
* This code snippet demonstrates how to initialize and create a TCP socket.
* \snippet doxygen_secure_socket_code_snippet.h snippet_create_socket
********************************************************************************
* \subsection snip2 Code Snippet2: Create Secure Socket
* This code snippet demonstrates how to initialize and create a TCP socket and set the TLS credentials to be used for securing the socket communication.
* \snippet doxygen_secure_socket_code_snippet.h snippet_create_secure_socket
********************************************************************************
********************************************************************************
* \subsection snip3 Code Snippet3: TCP Client Connect
* This code snippet demonstrates how to create a TCP client socket and initiate communication with a TCP server.
* \snippet doxygen_secure_socket_code_snippet.h snippet_tcp_client
********************************************************************************
* \subsection snip4 Code Snippet4: TCP Server - Listening for client connection
* This code snippet demonstrates how to create a TCP server socket and accept a TCP client connection to communicate.
* \snippet doxygen_secure_socket_code_snippet.h snippet_tcp_server
********************************************************************************
*/
/**
*
Expand Down Expand Up @@ -898,4 +919,4 @@ cy_rslt_t cy_socket_delete(cy_socket_t handle);
#endif
#endif /* ifndef INCLUDED_CY_SECURE_SOCKETS_INTERFACE_H_ */

/** \} group_secure_sockets */
/** \} group_secure_sockets */
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.0.426
1.0.1.446

0 comments on commit 2d153eb

Please sign in to comment.