mirror of
https://github.com/reality/dbot.git
synced 2024-11-27 22:39:26 +01:00
tidy
This commit is contained in:
parent
a074779441
commit
8eb60552fb
@ -1,7 +1,7 @@
|
|||||||
/**
|
/**
|
||||||
* Module Name: Link
|
* Module Name: RC
|
||||||
* Description: Stores recent channel rcs, with commands to retrieve
|
* Description: Relays UDP packets, intended for
|
||||||
* information about rcs.
|
* a feed of RecentChanges on a MediaWiki install.
|
||||||
*/
|
*/
|
||||||
var dgram = require('dgram');
|
var dgram = require('dgram');
|
||||||
|
|
||||||
@ -9,17 +9,12 @@ var rc = function(dbot) {
|
|||||||
var server = dgram.createSocket("udp4");
|
var server = dgram.createSocket("udp4");
|
||||||
|
|
||||||
server.on("message", function(msg, rinfo) {
|
server.on("message", function(msg, rinfo) {
|
||||||
|
var message = msg.toString();
|
||||||
console.log(msg.toString());
|
console.log(msg.toString());
|
||||||
|
// dbot.say(dbot.config.rc.server, dbot.config.rc.channel, message);
|
||||||
});
|
});
|
||||||
|
|
||||||
server.bind(dbot.config.rc.port);
|
server.bind(dbot.config.rc.port);
|
||||||
|
|
||||||
|
|
||||||
var commands = {
|
|
||||||
};
|
|
||||||
this.commands = commands;
|
|
||||||
|
|
||||||
this.on = 'PRIVMSG';
|
|
||||||
};
|
};
|
||||||
|
|
||||||
exports.fetch = function(dbot) {
|
exports.fetch = function(dbot) {
|
||||||
|
Loading…
Reference in New Issue
Block a user