免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1344 | 回复: 0
打印 上一主题 下一主题

thread failed to start:的问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2015-04-09 13:13 |只看该作者 |倒序浏览
本帖最后由 hxbsy 于 2015-04-09 13:54 编辑

use IO::Handle;

use Socket;

use threads;

use IO::Socket::INET;

open(pctxt,'./pc.txt')||die "error open $!";


while($read_data = <pctxt>)
{
        chomp;
        $read_data=~s/\s//g;
        $read_data=~s/" "//g;
        thread($read_data);
}

close(pctxt);


sub thread
{
    my $net = shift;
    my @ip = (1..255);
    my $port = 12345;
    my $thr0 = threads->new(\\&scan, "$net@ip[0..63]", $port);
    my $thr1 = threads->new(\\&scan, "$net@ip[64..127]", $port);
    my $thr2 = threads->new(\\&scan, "$net@ip[128..191]", $port);
    my $thr3 = threads->new(\\&scan, "$net@ip[192..254]", $port);
    $thr0->join();
    $thr1->join();
    $thr2->join();
    $thr3->join();
}



sub scan
{
        my (@hosts, $port) = @_;
       foreach my $host (@hosts)
        {
                  my $socket = new IO::Socket::INET
                  (
                            PeerHost => $host,
                            PeerPort => $port,
                            Proto    => "tcp",
                    );
                if($socket)
                {
                            print $port,"is  open!\\n";
                       $socket->close();
                }

         }
}

提示:
thread failed to start: Not a CODE reference at pcmnt.pl line 28.
thread failed to start: Not a CODE reference at pcmnt.pl line 29.
thread failed to start: Not a CODE reference at pcmnt.pl line 30.
thread failed to start: Not a CODE reference at pcmnt.pl line 31.

貌似是给scan子程序传参数时有问题,但是找不出原因来。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP