Remove extra @param values

pull/9328/head
Seppo Takalo 2019-01-10 11:09:53 +02:00
parent 5fa13e43d1
commit 706af114e3
2 changed files with 1 additions and 3 deletions

View File

@ -38,7 +38,6 @@ public:
/** Create an uninitialized DTLS socket.
*
* Must call open to initialize the socket on a network stack.
* @param _udp_socket Underlying transport socket.
*/
DTLSSocket() : DTLSSocketWrapper(&_udp_socket) {}

View File

@ -42,7 +42,6 @@ public:
/** Create an uninitialized socket.
*
* Must call open to initialize the socket on a network stack.
* @param tcp_socket Underlying transport socket.
*/
TLSSocket() : TLSSocketWrapper(&tcp_socket) {}
@ -53,7 +52,7 @@ public:
/** Opens a socket.
*
* Creates a network socket on the network stack of the given
* network interface.
* network interface.
*
* @note TLSSocket cannot be reopened after closing. It should be destructed to
* clear internal TLS memory structures.