mirror of https://github.com/ARMmbed/mbed-os.git
Fix review findings.
parent
e8b45561d3
commit
566a12efab
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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:
|
||||||
|
|
Loading…
Reference in New Issue