1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-10 04:22:05 +03:00

WiFiServer - don't inherit from Server class (#8418)

* WiFiServer - don't inherit from Server class
This commit is contained in:
Juraj Andrássy
2022-01-03 14:06:31 +01:00
committed by GitHub
parent dde2c769db
commit d0cc3a80f8
4 changed files with 2 additions and 29 deletions

View File

@ -171,18 +171,6 @@ void WiFiServer::stop() {
close();
}
size_t WiFiServer::write(uint8_t b) {
return write(&b, 1);
}
size_t WiFiServer::write(const uint8_t *buffer, size_t size) {
// write to all clients
// not implemented
(void) buffer;
(void) size;
return 0;
}
template<typename T>
T* slist_append_tail(T* head, T* item) {
if (!head)