File tree Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Original file line number Diff line number Diff line change
1
+ /* * @file DTLSSocket.h DTLSSocket */
1
2
/*
2
3
* Copyright (c) 2018 ARM Limited
3
4
* SPDX-License-Identifier: Apache-2.0
14
15
* See the License for the specific language governing permissions and
15
16
* limitations under the License.
16
17
*/
18
+ /* * @addtogroup netsocket
19
+ * @{
20
+ */
17
21
18
22
#ifndef DTLSSOCKET_H
19
23
#define DTLSSOCKET_H
@@ -92,3 +96,4 @@ class DTLSSocket : public DTLSSocketWrapper {
92
96
93
97
#endif
94
98
#endif
99
+ /* * @} */
Original file line number Diff line number Diff line change
1
+ /* * @file TLSSocket.h TLSSocket */
1
2
/*
2
3
* Copyright (c) 2018 ARM Limited
3
4
* SPDX-License-Identifier: Apache-2.0
14
15
* See the License for the specific language governing permissions and
15
16
* limitations under the License.
16
17
*/
18
+ /* * @addtogroup netsocket
19
+ * @{
20
+ */
17
21
18
22
#ifndef _MBED_HTTPS_TLS_TCP_SOCKET_H_
19
23
#define _MBED_HTTPS_TLS_TCP_SOCKET_H_
@@ -87,3 +91,5 @@ class TLSSocket : public TLSSocketWrapper {
87
91
88
92
#endif // MBEDTLS_SSL_CLI_C
89
93
#endif // _MBED_HTTPS_TLS_TCP_SOCKET_H_
94
+
95
+ /* * @} */
Original file line number Diff line number Diff line change
1
+ /* * @file TLSSocketWrapper.h TLSSocketWrapper */
1
2
/*
2
3
* Copyright (c) 2018 ARM Limited
3
4
* SPDX-License-Identifier: Apache-2.0
14
15
* See the License for the specific language governing permissions and
15
16
* limitations under the License.
16
17
*/
18
+ /* * @addtogroup netsocket
19
+ * @{
20
+ */
17
21
18
22
#ifndef _MBED_HTTPS_TLS_SOCKET_WRAPPER_H_
19
23
#define _MBED_HTTPS_TLS_SOCKET_WRAPPER_H_
@@ -186,8 +190,8 @@ class TLSSocketWrapper : public Socket {
186
190
* was a first call to Socket::connect() API so that NSAPI_ERROR_INPROGRESS
187
191
* does not happen twice.
188
192
*
189
- * @parameter first_call is this a first call to Socket::connect() API.
190
- * @return 0 on success, negative error code on failure
193
+ * @param first_call is this a first call to Socket::connect() API.
194
+ * @return 0 on success, negative error code on failure
191
195
*/
192
196
nsapi_error_t start_handshake (bool first_call);
193
197
@@ -261,3 +265,4 @@ class TLSSocketWrapper : public Socket {
261
265
262
266
#endif /* MBEDTLS_SSL_CLI_C */
263
267
#endif // _MBED_HTTPS_TLS_SOCKET_WRAPPER_H_
268
+ /* * @} */
You can’t perform that action at this time.
0 commit comments