Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ namespace websockets { namespace network {
class GenericEspTcpClient : public TcpClient {
public:
GenericEspTcpClient(WifiClientImpl c) : client(c) {
client.setNoDelay(true);
//client.setNoDelay(true);
}

GenericEspTcpClient() {}

bool connect(const WSString& host, const int port) {
yield();
auto didConnect = client.connect(host.c_str(), port);
client.setNoDelay(true);
//client.setNoDelay(true);
return didConnect;
}

Expand Down