From 6a0e6782a5887febf730e311600d55d25ea42d60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=96=E7=95=8C?= Date: Tue, 28 Jan 2025 09:20:58 +0800 Subject: [PATCH] Add stub for `localDNSTransport` and `systemCertificates` --- Library/Network/ExtensionPlatformInterface.swift | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Library/Network/ExtensionPlatformInterface.swift b/Library/Network/ExtensionPlatformInterface.swift index 77927f5..324c355 100644 --- a/Library/Network/ExtensionPlatformInterface.swift +++ b/Library/Network/ExtensionPlatformInterface.swift @@ -423,4 +423,12 @@ public class ExtensionPlatformInterface: NSObject, LibboxPlatformInterfaceProtoc } #endif } + + public func localDNSTransport() -> (any LibboxLocalDNSTransportProtocol)? { + nil + } + + public func systemCertificates() -> (any LibboxStringIteratorProtocol)? { + nil + } }