SecureXPC icon indicating copy to clipboard operation
SecureXPC copied to clipboard

A simple and secure XPC framework for Swift

Results 7 SecureXPC issues
Sort by recently updated
recently updated
newest added

Added podspec file to support Cocoapods.

When sending a reply, check if it succeed or not. If it fails, send a failure instead of a success. Note that a unit test was causing this case, therefore...

It seems that XPCServer's `setErrorHandler` won't be called, until the connection is closed. I believe it's a bug.

This library looks great, but I want to use it for sharing a MTLSharedTextureHandle. Unfortunately, this only seems possible to encode using a NSXPCCoder: https://stackoverflow.com/questions/53286138/how-do-you-use-mtlsharedtexturehandle-or-mtlsharedeventhandle-with-the-c-xpc-int This seems like a huge...

Commit: 1cece54562c7626d042f007d2f38cfe325565850 I'm running into an interesting issue. Both my XPC server and client are sandboxed and have the requirement `.sameTeamIdentifier`. After handling about 2000 XPC requests, the following error...

I'm using a MachService (LaunchDaemon). `startAndBlock` will run this forever, but I'd like to quit the process if there are no active connections for a while (say 30 sec). I'm...

If the `operation()` throws an error, this clean-up won't happen. Since this thread-local will stick around, subsequent calls to `ClientIdentity.current` will be incorrect. This would let `effectiveUserID`/`effectivegroupID`/`code` be called and...