├── .gitignore ├── .gitmodules ├── DetoxIPC.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── DetoxIPC ├── Apple │ ├── NSConnection.h │ ├── NSPortNameServer.h │ └── ObjCRuntime.h ├── DTXIPCBase.h ├── DTXIPCConnection-Private.h ├── DTXIPCConnection.h ├── DTXIPCConnection.m ├── DTXIPCListener.h ├── DTXIPCListener.m ├── DetoxIPC.h ├── DetoxIPC.pch ├── Info.plist ├── NSInvocation+DTXRemoteSerialization.h ├── NSInvocation+DTXRemoteSerialization.m ├── _DTXIPCDistantObject.h ├── _DTXIPCDistantObject.m ├── _DTXIPCExportedObject.h ├── _DTXIPCExportedObject.m ├── _DTXIPCRemoteBlockRegistry.h └── _DTXIPCRemoteBlockRegistry.m ├── DetoxIPCTest ├── DetoxIPCTest.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── DetoxIPCTest │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.h │ ├── SceneDelegate.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── DetoxIPCTestUITests │ ├── DetoxIPCTestUITests.m │ └── Info.plist └── TestProtocol.h ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/.gitmodules -------------------------------------------------------------------------------- /DetoxIPC.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/DetoxIPC.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DetoxIPC.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/DetoxIPC.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DetoxIPC/Apple/NSConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/DetoxIPC/Apple/NSConnection.h -------------------------------------------------------------------------------- /DetoxIPC/Apple/NSPortNameServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/DetoxIPC/Apple/NSPortNameServer.h -------------------------------------------------------------------------------- /DetoxIPC/Apple/ObjCRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/DetoxIPC/Apple/ObjCRuntime.h -------------------------------------------------------------------------------- /DetoxIPC/DTXIPCBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/DetoxIPC/DTXIPCBase.h -------------------------------------------------------------------------------- /DetoxIPC/DTXIPCConnection-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/DetoxIPC/DTXIPCConnection-Private.h -------------------------------------------------------------------------------- /DetoxIPC/DTXIPCConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/DetoxIPC/DTXIPCConnection.h -------------------------------------------------------------------------------- /DetoxIPC/DTXIPCConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/DetoxIPC/DTXIPCConnection.m -------------------------------------------------------------------------------- /DetoxIPC/DTXIPCListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/DetoxIPC/DTXIPCListener.h -------------------------------------------------------------------------------- /DetoxIPC/DTXIPCListener.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/DetoxIPC/DTXIPCListener.m -------------------------------------------------------------------------------- /DetoxIPC/DetoxIPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/DetoxIPC/DetoxIPC.h -------------------------------------------------------------------------------- /DetoxIPC/DetoxIPC.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/DetoxIPC/DetoxIPC.pch -------------------------------------------------------------------------------- /DetoxIPC/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/DetoxIPC/Info.plist -------------------------------------------------------------------------------- /DetoxIPC/NSInvocation+DTXRemoteSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/DetoxIPC/NSInvocation+DTXRemoteSerialization.h -------------------------------------------------------------------------------- /DetoxIPC/NSInvocation+DTXRemoteSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/DetoxIPC/NSInvocation+DTXRemoteSerialization.m -------------------------------------------------------------------------------- /DetoxIPC/_DTXIPCDistantObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/DetoxIPC/_DTXIPCDistantObject.h -------------------------------------------------------------------------------- /DetoxIPC/_DTXIPCDistantObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/DetoxIPC/_DTXIPCDistantObject.m -------------------------------------------------------------------------------- /DetoxIPC/_DTXIPCExportedObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/DetoxIPC/_DTXIPCExportedObject.h -------------------------------------------------------------------------------- /DetoxIPC/_DTXIPCExportedObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/DetoxIPC/_DTXIPCExportedObject.m -------------------------------------------------------------------------------- /DetoxIPC/_DTXIPCRemoteBlockRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/DetoxIPC/_DTXIPCRemoteBlockRegistry.h -------------------------------------------------------------------------------- /DetoxIPC/_DTXIPCRemoteBlockRegistry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/DetoxIPC/_DTXIPCRemoteBlockRegistry.m -------------------------------------------------------------------------------- /DetoxIPCTest/DetoxIPCTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/DetoxIPCTest/DetoxIPCTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DetoxIPCTest/DetoxIPCTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/DetoxIPCTest/DetoxIPCTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DetoxIPCTest/DetoxIPCTest/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/DetoxIPCTest/DetoxIPCTest/AppDelegate.h -------------------------------------------------------------------------------- /DetoxIPCTest/DetoxIPCTest/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/DetoxIPCTest/DetoxIPCTest/AppDelegate.m -------------------------------------------------------------------------------- /DetoxIPCTest/DetoxIPCTest/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/DetoxIPCTest/DetoxIPCTest/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /DetoxIPCTest/DetoxIPCTest/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/DetoxIPCTest/DetoxIPCTest/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /DetoxIPCTest/DetoxIPCTest/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/DetoxIPCTest/DetoxIPCTest/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /DetoxIPCTest/DetoxIPCTest/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/DetoxIPCTest/DetoxIPCTest/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /DetoxIPCTest/DetoxIPCTest/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/DetoxIPCTest/DetoxIPCTest/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /DetoxIPCTest/DetoxIPCTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/DetoxIPCTest/DetoxIPCTest/Info.plist -------------------------------------------------------------------------------- /DetoxIPCTest/DetoxIPCTest/SceneDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/DetoxIPCTest/DetoxIPCTest/SceneDelegate.h -------------------------------------------------------------------------------- /DetoxIPCTest/DetoxIPCTest/SceneDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/DetoxIPCTest/DetoxIPCTest/SceneDelegate.m -------------------------------------------------------------------------------- /DetoxIPCTest/DetoxIPCTest/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/DetoxIPCTest/DetoxIPCTest/ViewController.h -------------------------------------------------------------------------------- /DetoxIPCTest/DetoxIPCTest/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/DetoxIPCTest/DetoxIPCTest/ViewController.m -------------------------------------------------------------------------------- /DetoxIPCTest/DetoxIPCTest/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/DetoxIPCTest/DetoxIPCTest/main.m -------------------------------------------------------------------------------- /DetoxIPCTest/DetoxIPCTestUITests/DetoxIPCTestUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/DetoxIPCTest/DetoxIPCTestUITests/DetoxIPCTestUITests.m -------------------------------------------------------------------------------- /DetoxIPCTest/DetoxIPCTestUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/DetoxIPCTest/DetoxIPCTestUITests/Info.plist -------------------------------------------------------------------------------- /DetoxIPCTest/TestProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/DetoxIPCTest/TestProtocol.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/DetoxIPC/HEAD/README.md --------------------------------------------------------------------------------