共有 0 个贴子
没有任何数据可供显示
开源项目社区 | 当前位置 : |
|
oss.trustie.net/open_source_projects | 主页 > 开源项目社区 > ruby-ircd |
ruby-ircd
|
0 | 0 | 12 |
贡献者 | 讨论 | 代码提交 |
ruby-ircd is an IRC daemon written in ruby. It extends the generic server of Webrick server.
It was created to to provide the IRC server and client implementations for ruby-hive project.
irc rfcs
FeaturesPure ruby Light Weight Supports Service Bots as threads Can be extended (is a library) Simple (Almost no) configuration Checked with leafchat, weechat, irssi, opera, chatzilla TodoChop commands INVITE others OPER, SQUIT, STATS, LINKS, TIME, CONNECT, TRACE, ADMIN, INFO Check with more clients Usage ircd = IRCServer.new( :Port => 6667 )
begin
trap("INT"){ircd.shutdown}
p = Thread.new {ircd.do_ping()}