USB Network Gate for macOS SDK User Guide

USB Network Gate for macOS SDK User Guide

void onLocalSharedUnshared(Device &dev, bool shared);
Local device notifications. This method is called after invocation of EveusbController::localShare, EveusbController::enumSharedDevices   Parameters:   ...
Wed, 27 Jul, 2022 at 5:43 PM
void onLocalAcquiredReleased(Device &dev, bool acquired);
Local device notifications. This method is called if client connects to shared device. See EveusbController::enumSharedDevices   Parameters:   dev - ob...
Wed, 27 Jul, 2022 at 5:17 PM
void onRemoteConnecting(Device &dev);
Remote device notifications. This method is called when you’re trying to connect to a remote device.   See EveusbController::remoteConnect, EveusbControll...
Wed, 27 Jul, 2022 at 5:16 PM
void onRemoteConnected(Device &dev);
Remote device notifications. This method is called after connecting to a remote device. See EveusbController::remoteConnect, EveusbController::enumRemoteDe...
Wed, 27 Jul, 2022 at 5:16 PM
void onRemoteReconnecting(Device &dev);
Remote device notifications. This method is called when reconnecting to a remote device after failure.   See EveusbController::enumRemoteDevices   Param...
Wed, 27 Jul, 2022 at 5:16 PM
void onRemoteDisconnecting(Device &dev);
Remote device notifications. This method is called when disconnecting from a remote device. See EveusbController::remoteDisconnect, EveusbController::enumR...
Wed, 27 Jul, 2022 at 5:16 PM
void onRemoteDisconnected(Device &dev);
Remote device notifications. This method is called after disconnecting from a remote device.   See EveusbController::remoteDisconnect, EveusbController::e...
Wed, 27 Jul, 2022 at 5:16 PM
void onRemoteDeleted(Device &dev);
Remote device notifications. This method is called if the remote device is not on the list any more.   See EveusbController::remoteDelete   Parameters: ...
Wed, 27 Jul, 2022 at 5:25 PM
class EveusbController
The daemon management API.   All member functions are asynchronous. The function sends a request to the daemon and returns control. Once the response from...
Wed, 27 Jul, 2022 at 5:25 PM
static int connect();
Establishes connection with daemon via local socket   Return:   Socket is ready to read/write, you should close it yourself   Remarks:   Use either ...
Wed, 27 Jul, 2022 at 5:24 PM