File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change 898898 DYLIB_COMPATIBILITY_VERSION = 1;
899899 DYLIB_CURRENT_VERSION = 1;
900900 EXECUTABLE_PREFIX = lib;
901- MACOSX_DEPLOYMENT_TARGET = 15.2 ;
901+ MACOSX_DEPLOYMENT_TARGET = 14.6 ;
902902 PRODUCT_NAME = "$(TARGET_NAME)";
903903 SKIP_INSTALL = YES;
904904 SWIFT_OPTIMIZATION_LEVEL = "-Onone";
915915 DYLIB_COMPATIBILITY_VERSION = 1;
916916 DYLIB_CURRENT_VERSION = 1;
917917 EXECUTABLE_PREFIX = lib;
918- MACOSX_DEPLOYMENT_TARGET = 15.2 ;
918+ MACOSX_DEPLOYMENT_TARGET = 14.6 ;
919919 PRODUCT_NAME = "$(TARGET_NAME)";
920920 SKIP_INSTALL = YES;
921921 SWIFT_VERSION = 6.0;
Original file line number Diff line number Diff line change @@ -113,7 +113,6 @@ actor Manager {
113113 }
114114 }
115115
116- // TODO: Call via XPC
117116 func startVPN( ) async throws ( ManagerError) {
118117 logger. info ( " sending start rpc " )
119118 guard let tunFd = ptp. tunnelFileDescriptor else {
@@ -137,10 +136,8 @@ actor Manager {
137136 if !startResp. success {
138137 throw . errorResponse( msg: startResp. errorMessage)
139138 }
140- // TODO: notify app over XPC
141139 }
142140
143- // TODO: Call via XPC
144141 func stopVPN( ) async throws ( ManagerError) {
145142 logger. info ( " sending stop rpc " )
146143 let resp : Vpn_TunnelMessage
@@ -157,7 +154,6 @@ actor Manager {
157154 if !stopResp. success {
158155 throw . errorResponse( msg: stopResp. errorMessage)
159156 }
160- // TODO: notify app over XPC
161157 }
162158
163159 // TODO: Call via XPC
You can’t perform that action at this time.
0 commit comments