iOS Xray support (#864)

Xray for ios
This commit is contained in:
Iurii Egorov 2024-06-30 12:19:38 +03:00 committed by GitHub
parent eeeb2805c5
commit 760f935965
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 285 additions and 3 deletions

View file

@ -13,6 +13,10 @@ public func ovpnLog(_ type: OSLogType, title: String = "", message: String) {
neLog(type, title: "OVPN: \(title)", message: message)
}
public func xrayLog(_ type: OSLogType, title: String = "", message: String) {
neLog(type, title: "XRAY: \(title)", message: message)
}
public func neLog(_ type: OSLogType, title: String = "", message: String) {
Log.log(type, title: "NE: \(title)", message: message)
}