From 04572e7a4299ed9dc412db7c5baeec9eabe464a3 Mon Sep 17 00:00:00 2001 From: Amlal EL Mahrouss Date: Fri, 2 Aug 2024 11:00:13 +0200 Subject: [IMP] New PROCESS_HEADER_BLOCK structure instead of ProcessHeader. [IMP] PEF_SHARED_OBJECT_TRAITS with IsValid() method. [IMP] HTTPS and ODBC for URLs support. Signed-off-by: Amlal EL Mahrouss --- Kernel/Sources/URL.cxx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'Kernel/Sources/URL.cxx') diff --git a/Kernel/Sources/URL.cxx b/Kernel/Sources/URL.cxx index 88328ea6..69c4733f 100644 --- a/Kernel/Sources/URL.cxx +++ b/Kernel/Sources/URL.cxx @@ -22,12 +22,14 @@ namespace Kernel /// @brief internal and reserved protocols by kernel. constexpr const Char* kURLProtocols[] = { "file", // Filesystem protocol - "zup", // Zeta update protocol + "zup", // ZKA update protocol "oscc", // Open System Configuration Connectivity. + "odbc", // ODBC connectivity. + "https", // HTTPS layer driver (HTTPS.sys). }; constexpr const int kUrlOutSz = 1; //! such as: :// - constexpr const int kProtosCount = 3; + constexpr const int kProtosCount = 5; constexpr const int kRangeSz = 4096; ErrorOr url_extract_location(const Char* url) -- cgit v1.2.3