Skip Menu |

This queue is for tickets about the Net-VNC CPAN distribution.

Report information
The Basics
Id: 77255
Status: new
Priority: 0/
Queue: Net-VNC

People
Owner: Nobody in particular
Requestors: SvenDowideit [...] home.org.au
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: $vnc->depth(8) causes eventual failure
if I comment out the depth(8) line, there appears to be no successful vnc communications - thou the module returns no errors. without it, things work as expected. my $vnc = Net::VNC->new({hostname => 'big', port=>'5902'}); #$vnc->depth(8); $vnc->login; my $image = $vnc->capture; $image->save("out.png"); print "one\n"; $vnc->send_key_event_string('root'); print "2\n"; $vnc->send_key_event(0xff0d); print "3\n"; sleep(1); print "4\n"; $vnc->send_key_event_string('rex'); print "5\n"; $vnc->send_key_event(0xff0d);