From 96b0771b0f3b7639cdc5e08a56f64621f5309fc3 Mon Sep 17 00:00:00 2001 From: Sergey Linev Date: Mon, 11 May 2026 08:28:35 +0200 Subject: [PATCH] [http] add note to THttpServer docu (cherry picked from commit 2993ad80945d88a3835f3b5a5ca63fdf33bdd0f3) --- net/http/src/THttpServer.cxx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/net/http/src/THttpServer.cxx b/net/http/src/THttpServer.cxx index 24adc3b7a35e2..672cf71e89902 100644 --- a/net/http/src/THttpServer.cxx +++ b/net/http/src/THttpServer.cxx @@ -84,11 +84,13 @@ class THttpTimer : public TTimer { } }; - -/** \class THttpServer +/** +\class THttpServer \ingroup http - -Online http server for arbitrary ROOT application +\brief Online http server for arbitrary ROOT application +\note This class provides HTTP access to ROOT objects. The user is entirely responsible for the security of the server. +It is strongly recommended to use the server only within an isolated network +or to enable proper authentication to prevent unauthorized remote access. Idea of THttpServer - provide remote http access to running ROOT application and enable HTML/JavaScript user interface.