in reply to Re^2: Tkx and tcp server
in thread Tkx and tcp server
Notice, you have \$client as a reference instead of a plain filehandleTkx::fileevent( $client, readable =>[\&handle_connection, \$client] ); # whereas the correct syntax I previously posted is Tkx::fileevent($fh, readable => [\&run_watch, $fh]);
|
|---|