I developed a little application, that serves through TCP socket; all works fine, but I'd like to do a step more: is it possible to catch special keys (like UP arrow, DOWN arrow, Fx function, ecc.) through a socket?
Asked
Active
Viewed 15 times
0
-
A socket is only a transport for data. It does not catch keyboard data. Catching of the special keys, i.e. the transformation of event to data, has to be done outside the socket. – Steffen Ullrich Jan 23 '23 at 14:43
-
No, TCP only sends bytes, not keys. – user253751 Jan 23 '23 at 20:26