USB Network Gate for Linux SDK User Guide

USB Network Gate for Linux SDK User Guide

void onLocalDeviceInfo(const std::string &devname, const DeviceInfo &info);
Local device notifications. See EveusbController::enumLocalDeviceTree   Parameters:   devname - sys name of device (unique USB device identifier obtai...
Sun, 20 Mar, 2022 at 3:10 PM
void onLocalAddedRemoved(const std::string &devname, int maxchild, const std::string &name, bool added);
Local device notifications. Is called if list of local devices changed (device was plugged into a USB port/unplugged)   Parameters:   devname - sys na...
Sun, 20 Mar, 2022 at 3:09 PM
void onLocalSharedUnshared(Device &dev, bool shared);
Local device notifications. Is called after invocation of EveusbController::localShare, EveusbController::enumSharedDevices   Parameters:   dev - obje...
Sun, 20 Mar, 2022 at 3:52 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 - o...
Sun, 20 Mar, 2022 at 3:52 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, EveusbController::...
Sun, 20 Mar, 2022 at 3:52 PM
void onRemoteConnected(Device &dev);
Remote device notifications. This method is called after connecting to a remote device. See EveusbController::remoteConnect, EveusbController::enumRemoteDev...
Sun, 20 Mar, 2022 at 3:51 PM
void onRemoteReconnecting(Device &dev);
Remote device notifications. This method is called when reconnecting to a remote device after failure. See EveusbController::enumRemoteDevices   Paramete...
Sun, 20 Mar, 2022 at 3:56 PM
void onRemoteDisconnecting(Device &dev);
Remote device notifications. This method is called when disconnecting from a remote device. See EveusbController::remoteDisconnect, EveusbController::enumRe...
Sun, 20 Mar, 2022 at 3:51 PM
void onRemoteDisconnected(Device &dev);
Remote device notifications. This method is called after disconnecting from a remote device. See EveusbController::remoteDisconnect, EveusbController::enumR...
Sun, 20 Mar, 2022 at 3:50 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: ...
Sun, 20 Mar, 2022 at 3:13 PM