Fix review findings.

pull/9646/head
Seppo Takalo 2019-01-11 11:48:45 +02:00 committed by adbridge
parent e8b45561d3
commit 566a12efab
3 changed files with 4 additions and 3 deletions

View File

@ -1,3 +1,4 @@
/*
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software

View File

@ -112,8 +112,8 @@ public:
/** Send a message on a socket. /** Send a message on a socket.
* *
* The sendto() function sends a message through a connection-mode or connectionless-mode socket. * The sendto() function sends a message through a connection-mode or connectionless-mode socket.
* If the socket is in connectionless-mode, the message is sent to the address specified. * If the socket is a connectionless-mode socket, the message is sent to the address specified.
* If the socket is in connection-mode, address is ignored. * If the socket is a connected-mode socket, address is ignored.
* *
* By default, sendto blocks until data is sent. If socket is set to * By default, sendto blocks until data is sent. If socket is set to
* non-blocking or times out, NSAPI_ERROR_WOULD_BLOCK is returned * non-blocking or times out, NSAPI_ERROR_WOULD_BLOCK is returned

View File

@ -26,7 +26,7 @@
#include "netsocket/NetworkInterface.h" #include "netsocket/NetworkInterface.h"
#include "netsocket/WiFiAccessPoint.h" #include "netsocket/WiFiAccessPoint.h"
/** Common interface that between Wi-Fi devices. /** Common interface between Wi-Fi devices.
*/ */
class WiFiInterface: public virtual NetworkInterface { class WiFiInterface: public virtual NetworkInterface {
public: public: