4

我在守护进程的 perl 中创建了一个这样的套接字

IO::Socket::INET->new(LocalPort => $port,
                      Proto => 'udp',Blocking => '0') or die "socket: $@"; 

在 Linux 机器上

在 recv 调用期间,套接字的行为与预期的非阻塞套接字一样 $sock->recv($message, 128);

但是,我一直观察到,当 eth0 上的 VIF 在守护程序运行并接收数据时重新配置时,recv 调用开始阻塞。

这是一个非常令人困惑的问题。我做到$sock->recv($message, 128, MSG_DONTWAIT);了,recv 调用变得非阻塞。

我用谷歌搜索但看不到使用 UDP 非阻塞套接字的建议方法是什么。

4

1 回答 1

4

首先,字面上的答案:

# Portable turn-off-blocking code, stolen from POE::Wheel::SocketFactory.
sub _stop_blocking {
    my $socket_handle = shift;

    # Do it the Win32 way.
    if ($^O eq 'MSWin32') {
        my $set_it = "1";
        # 126 is FIONBIO (some docs say 0x7F << 16)
        # (0x5421 on my Linux 2.4.25 ?!)
        ioctl($socket_handle,0x80000000 | (4 << 16) | (ord('f') << 8) | 126,$set_it) or die "can't ioctl(): $!\n";
    }

    # Do it the way everyone else does.
    else {
        my $flags = fcntl($socket_handle, F_GETFL, 0) or die "can't getfl(): $!\n";
        $flags = fcntl($socket_handle, F_SETFL, $flags | O_NONBLOCK) or die "can't setfl(): $!\n";
    }
}

但是,我强烈建议您使用AnyEvent::Handle

于 2012-11-12T18:50:16.973 回答