diff --git a/doc/esp8266wifi/server-class.rst b/doc/esp8266wifi/server-class.rst index 8855083ab..560322837 100644 --- a/doc/esp8266wifi/server-class.rst +++ b/doc/esp8266wifi/server-class.rst @@ -14,6 +14,13 @@ Methods documented for the `Server Class `__ documentation. Before they are fully documented please refer to information below. +write (write to all clients) not supported +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Please note that the ``write`` method on the ``WiFiServer`` object is not implemented and returns failure always. Use the returned +``WiFiClient`` object from the ``WiFiServer::available()`` method to communicate with individual clients. If you need to send +the exact same packets to a series of clients, your application must maintain a list of connected clients and iterate over them manually. + setNoDelay ~~~~~~~~~~