Add t to TCP packets (#266)

By creating this pull request, I understand that code that is AI
generated or otherwise automatically generated may be rejected without
further discussion.
I declare that I fully understand all code I pushed into this PR, and
wrote all this code myself and own the rights to this code.
This commit is contained in:
Tixx
2026-08-13 23:41:27 +02:00
committed by GitHub
+1 -1
View File
@@ -77,7 +77,7 @@ void ServerSend(std::string Data, bool Rel) {
C = Data.at(0); C = Data.at(0);
if (C == 'O' || C == 'T') if (C == 'O' || C == 'T')
Ack = true; Ack = true;
if (C == 'N' || C == 'W' || C == 'Y' || C == 'V' || C == 'E' || C == 'C') if (C == 'N' || C == 'W' || C == 'Y' || C == 'V' || C == 'E' || C == 'C' || C == 't')
Rel = true; Rel = true;
if (compressBound(Data.size()) > 1024) if (compressBound(Data.size()) > 1024)
Rel = true; Rel = true;