# start here, on_data called where thereis data on a socket(data can be partial-packet)
def on_data bytes
  @stream << bytes
...

Ruby Packet handling in network-app

by Bubonic Pestilence, May 07, 2011 04:51, 4 refactorings, tagged with ruby, networking, packet

Just looking for better arc...

8bb326c6aeddd50cdabca0716a4233b6 Talk
#!/usr/bin/ruby1.9.1

require 'socket'
...

Ruby IRC Bot

by https://www.google.com/accounts/o8/id?id=AItOawm_1kLTM0WqGfgT7tx2yu3ikXX8Qra87j8, February 02, 2011 22:05, No refactoring, tagged with sockets, irc, bot, networking

So far this is what i have ...

55502f40dc8b7c769880b10874abc9d0 Talk