ruby Ruby unix socket服务器 - 客户端接收 - 响应

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ruby Ruby unix socket服务器 - 客户端接收 - 响应相关的知识,希望对你有一定的参考价值。

require "socket"

server = UNIXServer.new('/tmp/simple.sock')

puts "==== Waiting for connection"
socket = server.accept

puts "==== Got Request:"
puts socket.readline

# # Read everything from the socket
# while line = socket.readline
#   puts line.inspect
# end

puts "==== Sending Response"
socket.write("I read you loud and clear, good buddy!")

socket.close
require "socket"

socket = UNIXSocket.new('/tmp/simple.sock')

puts "==== Sending"
socket.write("Hello server, can you hear me?\n")

puts "==== Getting Response"
puts socket.readline

socket.close

以上是关于ruby Ruby unix socket服务器 - 客户端接收 - 响应的主要内容,如果未能解决你的问题,请参考以下文章

Ruby Socket 编程

ruby 在Ruby中尝试使用分叉和unix套接字

ruby RubyでWindowsとUNIXの标准出力とエラー出力を抑止する

Ruby:将unix时间戳转换为日期[重复]

ruby 重新实现的unix树

ruby Win32 FILETIMEとUNIX时间とを相互に変换する