Fix websocket

This commit is contained in:
2025-11-14 10:09:22 -06:00
parent 23e3132ba7
commit ae6ae23075
2 changed files with 2 additions and 2 deletions

View File

@@ -373,7 +373,7 @@ namespace Tesses::Framework::Http
mtx.Lock();
this->closed=true;
uint8_t finField = 0b10000000 ;
uint8_t firstByte= finField | 0x9;
uint8_t firstByte= finField | 0x8;
strm->WriteByte(firstByte);
strm->WriteByte(0);

View File

@@ -40,7 +40,7 @@ namespace Tesses::Framework::Http
mtx.Lock();
closed=true;
uint8_t finField = 0b10000000 ;
uint8_t firstByte= finField | 0x9;
uint8_t firstByte= finField | 0x8;
strm->WriteByte(firstByte);
strm->WriteByte(0);