- 论坛徽章:
- 0
|
本帖最后由 猪鼻插葱 于 2010-10-26 19:16 编辑
{:3_186:} 我上代码吧 这是发送的
- sub _send {
- my ($self, $fh) = (@_);
- local (*_);
- local ($/) = "\r\n";
- $self->{sock}->autoflush(0); # use less writes (thx to Sam Horrocks for the tip)
- while (<$fh>) {
- s/^\./../;
- $self->{sock}->print($_) or die "$0: write error: $!\n";
- }
- $self->{sock}->autoflush(1); # restore unbuffered socket operation
- $self->{sock}->print(".\r\n") or die "$0: write error: $!\n";
- }
复制代码 这个是接收的
- sub _receive{
- my ($self) = @_;
- my ($tmp, $reply);
- return undef unless $tmp = $self->{sock}->getline;
- while (defined $tmp) {
- $reply .= $tmp;
- return undef unless $tmp = $self->{sock}->getline;
- }
- $reply .= $tmp;
- $reply =~ s/\r\n$//;
- return $reply;
- }
复制代码 需要把接收到的标量 转换到句柄里 使用_send发送出去 |
|