Perl IO:Socket IO:Select server client

來源:互聯網
上載者:User

標籤:perl socket select

  1. server程式

接受用戶端資訊,並發送回應

#!/usr/bin/perl -w

# socket_server.pl

use strict;

use IO::Socket;

use IO::Select;


# hash to install IP Port


my ($ser_addr, $ser_port)=("127.0.0.1", "12345");

our($buffer, $len);


my $socket = IO::Socket::INET->new(

    LocalAddr => "$ser_addr",  #本機IP地址

    LocalPort => "$ser_port",   #定義原生Port,然後進行bind

    Type => SOCK_STREAM,  #通訊端類型

    Proto => "tcp", #協議名

    Listen => 200,  #定義listen的最大數

    Blocking => 0,  #非阻塞

    ) or die "Can not create socket [email protected]";

my $sel = IO::Select->new($socket);

while (my @ready = $sel->can_read) {

    foreach my $fh (@ready) {

        if ($fh == $socket) {

            my $new = $socket->accept();

            $sel->add($new);

        }

        else {

            $len = $fh->recv($buffer,1024,0); #接收用戶端訊息

            print "$buffer \n";

            $fh->send("Server OK!\n",0);  #發送服務端訊息

            $fh->autoflush(1);

            $sel->remove($fh);

            $fh->close();

        }

    }

}

$socket->close() or warn "Close Socket [email protected]";


2.client 

串連用戶端,發送一個訊息,並接受伺服器端應答訊息


#!/usr/bin/perl -w

# Socket_client.pl

use strict;

use IO::Socket;  ##IO::Socket::INET模組是IO::Socket模組的子模組,不用重新use。

use IO::Select;  ##該模組和Linux下select()函數實現的功能一致,另擴充更過的功能。可以perldoc查看。


for (my $i=0; $i<20000; $i++){

&send_rev_data;


}


sub send_rev_data{

my ($ser_addr, $ser_port) = ("127.0.0.1", "12345");

##IO::Socket::INET->new()用於初始化一個socket串連,其中整合了socket、inet_aton、connect、bind、listen等功能。就不需要單獨轉換IP地址為網路地址結構了,直接使用IP地址就ok了。

##具體參數下面單獨介紹。

my $socket = IO::Socket::INET->new(

    PeerAddr => "$ser_addr",

    PeerPort => "$ser_port",

    Type => SOCK_STREAM,

    Proto => "tcp",

    ) or die "Can not create socket [email protected]";

$socket->send("Client Ok!\n",0);  ##發送訊息至伺服器端。

$socket->autoflush(1);  

my $sel = IO::Select->new($socket); ##建立select對象

while (my @ready = $sel->can_read) {    ##等待服務端返回的訊息

    foreach my $fh (@ready) {

        if ($fh == $socket) {

            while (<$fh>) {

                print $_;

            }

            $sel->remove($fh);  

            close $fh;

        }

    }

}

#$socket->close() or die "Close Socket [email protected]";

}

   


本文出自 “yiyi” 部落格,請務必保留此出處http://heyiyi.blog.51cto.com/205455/1598532

Perl IO:Socket IO:Select server client

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.