Skip to content

Instantly share code, notes, and snippets.

@boddhisattva
Created May 11, 2014 11:35
Show Gist options
  • Select an option

  • Save boddhisattva/f0df60e7bb1f575caf2a to your computer and use it in GitHub Desktop.

Select an option

Save boddhisattva/f0df60e7bb1f575caf2a to your computer and use it in GitHub Desktop.
Chat application - client script
require 'socket'
host, port = ARGV
ds = UDPSocket.new
ds.connect(host,port)
request_message = ''
$a = IO.new(2,"w+")
while request_message.chop != "quit"
puts "Enter Message: "
request_message = $a.readline
ds.send(request_message,0)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment