Connection Status Messages
Connection Status Messages
Virtual Inspector displays connection feedback messages at the top of the Server window. These messages indicate whether the Client was found, authenticated, or rejected.
Understanding these messages helps diagnose connection, password, and network issues.
🟢 Successful Messages
Client authentication SUCCESS.

This means:
The Server successfully contacted the Client
The Client responded
The password or Client Secret matched
The handshake is complete → The connection is fully established.
🔴 Error Messages
❗ Client not found — no response received.

Shown when:
The Server sends a HELLO packet
The Client does not respond in time
Possible causes:
Wrong Client IP
Wrong Client Port (The port used by the Client is defined in the ProjectParameter asset inside the inspected Unity project.)
Client application not running
Firewall or OS security blocking UDP traffic
Client crashed or stuck during initialization
Another process already uses this port on the device
❗ Client authentication FAILED. Closing server session.

Shown when:
A Client responded
BUT the authentication hash did not match
Possible causes:
Wrong password
Wrong Client Secret
Server & Client do not share the same secret
Leftover salt or secret mismatch after regeneration
The Server automatically closes the session to avoid unauthorized access.
Last updated