From 8c3c5dfe3304c65b1bbe54b3e4edd72d75d25c19 Mon Sep 17 00:00:00 2001 From: Harald Barth Date: Fri, 9 Aug 2024 14:34:30 +0200 Subject: [PATCH] do not flush --- EthernetInterface.cpp | 3 ++- GITHUB_SHA.h | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/EthernetInterface.cpp b/EthernetInterface.cpp index 584ad2e..423d60e 100644 --- a/EthernetInterface.cpp +++ b/EthernetInterface.cpp @@ -248,7 +248,8 @@ void EthernetInterface::loop2() { tmpbuf[count]=0; clients[socketOut].write(tmpbuf,count); } - clients[socketOut].flush(); //maybe + // do trust write does its thing and not flush + // clients[socketOut].flush(); //maybe } looptimer(8000, F("Ethloop after outbound")); diff --git a/GITHUB_SHA.h b/GITHUB_SHA.h index eca7c82..f8c7e12 100644 --- a/GITHUB_SHA.h +++ b/GITHUB_SHA.h @@ -1 +1 @@ -#define GITHUB_SHA "devel-fozzie-202408090945Z" +#define GITHUB_SHA "devel-fozzie-202408091233Z"