mirror of
https://github.com/esp8266/Arduino.git
synced 2025-07-30 16:24:09 +03:00
Fixing Client and capitalizing header file names.
The switch from checking _sock against a default value, combined with the checking for unconnected clients in status(), broke the Client. I went back to checking the value of _sock against the default and removed the _connected member altogether because it was redundant (and therefore needed to be kept in sync with _sock).
This commit is contained in:
@ -4,9 +4,9 @@ extern "C" {
|
||||
#include "string.h"
|
||||
}
|
||||
|
||||
#include "ethernet.h"
|
||||
#include "client.h"
|
||||
#include "server.h"
|
||||
#include "Ethernet.h"
|
||||
#include "Client.h"
|
||||
#include "Server.h"
|
||||
|
||||
Server::Server(uint16_t port)
|
||||
{
|
||||
|
Reference in New Issue
Block a user