From 28206ae229bb69ca37f7cd2be61f7c2ba37da286 Mon Sep 17 00:00:00 2001
From: Benny Baumann <BenBE@geshi.org>
Date: Sun, 26 Feb 2023 18:40:41 +0100
Subject: [PATCH] add: TODO on newline handling

---
 src/net/connection_line_buffer.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/net/connection_line_buffer.cpp b/src/net/connection_line_buffer.cpp
index 7650bda..43207b0 100644
--- a/src/net/connection_line_buffer.cpp
+++ b/src/net/connection_line_buffer.cpp
@@ -13,6 +13,7 @@ std::string::size_type default_eol_search(
     const std::string &data,
     std::string::size_type start_position
 ) {
+    // TODO byte stuffing support implementieren bzw. Escaping von newline char; gerne auch als separate Suchfunktion
     const std::string::size_type s = data.size();
 
     for (std::string::size_type i = start_position; i < s; i++) {
-- 
GitLab