Skip to content

Commit 706af11

Browse files
author
Seppo Takalo
committed
Remove extra @param values
1 parent 5fa13e4 commit 706af11

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

features/netsocket/DTLSSocket.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ class DTLSSocket : public DTLSSocketWrapper {
3838
/** Create an uninitialized DTLS socket.
3939
*
4040
* Must call open to initialize the socket on a network stack.
41-
* @param _udp_socket Underlying transport socket.
4241
*/
4342
DTLSSocket() : DTLSSocketWrapper(&_udp_socket) {}
4443

features/netsocket/TLSSocket.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ class TLSSocket : public TLSSocketWrapper {
4242
/** Create an uninitialized socket.
4343
*
4444
* Must call open to initialize the socket on a network stack.
45-
* @param tcp_socket Underlying transport socket.
4645
*/
4746
TLSSocket() : TLSSocketWrapper(&tcp_socket) {}
4847

@@ -53,7 +52,7 @@ class TLSSocket : public TLSSocketWrapper {
5352
/** Opens a socket.
5453
*
5554
* Creates a network socket on the network stack of the given
56-
* network interface.
55+
* network interface.
5756
*
5857
* @note TLSSocket cannot be reopened after closing. It should be destructed to
5958
* clear internal TLS memory structures.

0 commit comments

Comments
 (0)