當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Ruby UNIXSocket.recvfrom用法及代碼示例


本文簡要介紹ruby語言中 UNIXSocket.recvfrom 的用法。

用法

recvfrom(maxlen [, flags[, outbuf]]) → [mesg, unixaddress]

通過 unixsocket 接收消息。

maxlen 是要接收的最大字節數。

flags 應該是 Socket::MSG_* 常量的按位或。

outbuf 將隻包含方法調用後接收到的數據,即使它一開始不為空。

s1 = Socket.new(:UNIX, :DGRAM, 0)
s1_ai = Addrinfo.unix("/tmp/sock1")
s1.bind(s1_ai)

s2 = Socket.new(:UNIX, :DGRAM, 0)
s2_ai = Addrinfo.unix("/tmp/sock2")
s2.bind(s2_ai)
s3 = UNIXSocket.for_fd(s2.fileno)

s1.send "a", 0, s2_ai
p s3.recvfrom(10) #=> ["a", ["AF_UNIX", "/tmp/sock1"]]

相關用法


注:本文由純淨天空篩選整理自ruby-lang.org大神的英文原創作品 UNIXSocket.recvfrom。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。