You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the mon_desc() function in server.c, the text for the PID is correct for a UI frame but incorrect for an I frame. The latter incorrectly prefixes the PID value with '0x'.
For example:
UI frame: "pid=F0" -- correct
I frame: "pid=0xF0" -- incorrect
The comment above the function shows the correct text, per the AGWPE spec, but the code adds the '0x' prefix, such that a client expecting to parse the string per the spec fails.