当前位置: 首页 > 文档资料 > Perl 入门教程 >

socketpair

优质
小牛编辑
129浏览
2023-12-01

描述 (Description)

此函数使用PROTOCOL在指定TYPE的指定DOMAIN中创建一对未命名的连接套接字。 如果未实现系统socketpair()函数,则会导致致命错误。

语法 (Syntax)

以下是此函数的简单语法 -

socketpair SOCKET1, SOCKET2, DOMAIN, TYPE, PROTOCOL

返回值 (Return Value)

失败时此函数返回0,成功时返回1。

<!--

例子 (Example)

Following is the example code showing its basic usage −

When above code is executed, it produces the following result −

-->