add basic

This commit is contained in:
Douglas Gardner 2013-03-06 13:55:35 +00:00
parent e648068b1c
commit a074779441
2 changed files with 30 additions and 0 deletions

3
modules/rc/config.json Normal file
View File

@ -0,0 +1,3 @@
{
"port":1337
}

27
modules/rc/rc.js Normal file
View File

@ -0,0 +1,27 @@
/**
* Module Name: Link
* Description: Stores recent channel rcs, with commands to retrieve
* information about rcs.
*/
var dgram = require('dgram');
var rc = function(dbot) {
var server = dgram.createSocket("udp4");
server.on("message", function(msg, rinfo) {
console.log(msg.toString());
});
server.bind(dbot.config.rc.port);
var commands = {
};
this.commands = commands;
this.on = 'PRIVMSG';
};
exports.fetch = function(dbot) {
return new rc(dbot);
};