Ver código fonte

Update comment to clarify requirements for safe handling in ClientImpl::handle_request

yhirose 2 semanas atrás
pai
commit
1c3d35f83c
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      httplib.h

+ 1 - 1
httplib.h

@@ -12731,7 +12731,7 @@ inline bool ClientImpl::handle_request(Stream &strm, Request &req,
 
 
   if (res.get_header_value("Connection") == "close" ||
   if (res.get_header_value("Connection") == "close" ||
       (res.version == "HTTP/1.0" && res.reason != "Connection established")) {
       (res.version == "HTTP/1.0" && res.reason != "Connection established")) {
-    // TODO this requires a not-entirely-obvious chain of calls to be correct
+    // NOTE: this requires a not-entirely-obvious chain of calls to be correct
     // for this to be safe.
     // for this to be safe.
 
 
     // This is safe to call because handle_request is only called by send_
     // This is safe to call because handle_request is only called by send_