るりまサーチ (Ruby 3.0)

最速Rubyリファレンスマニュアル検索!
3件ヒット [1-3件を表示] (0.013秒)

別のキーワード

  1. object then
  2. _builtin then
  3. then object
  4. then _builtin

種類

クラス

モジュール

キーワード

検索結果

Socket::Constants::SO_SECURITY_AUTHENTICATION -> Integer (18307.0)

@todo

@todo

Socket::SO_SECURITY_AUTHENTICATION -> Integer (18307.0)

@todo

@todo

TCPSocket (25.0)

インターネットドメインのストリーム型ソケットのクラスです。

...をそのままサーバに転送するプログラムは以下の
ようになります。

require "socket"

port = if ARGV.size > 0 then ARGV.shift else 4444 end
print port, "\n"

s = TCPSocket.open("localhost", port)

while gets
s.write($_)
print(s.gets)
end
s.close...