Skip to content
Snippets Groups Projects
Commit 7f7e8030 authored by Eric S. Raymond's avatar Eric S. Raymond
Browse files

Typo fix and a caveat.

parent 42aafbc1
No related branches found
No related tags found
No related merge requests found
...@@ -5,12 +5,13 @@ irker - a simple IRC multiplexer daemon ...@@ -5,12 +5,13 @@ irker - a simple IRC multiplexer daemon
Takes JSON objects of the form {'channel':<channel-url>, 'message':<text>} Takes JSON objects of the form {'channel':<channel-url>, 'message':<text>}
and relays messages to IRC channels. and relays messages to IRC channels.
Run this as a daemon in order to maimntain stateful connections to IRC Run this as a daemon in order to maintain stateful connections to IRC
servers; this will allow it to respond to server pings and minimize servers; this will allow it to respond to server pings and minimize
join/leave traffic. join/leave traffic.
Requires Python 2.6. Requires Python 2.6.
TO-DO: some servers have a limit of 20 channels per server connection.
""" """
import os, sys, json, irclib, exceptions, getopt, urlparse import os, sys, json, irclib, exceptions, getopt, urlparse
import threading, Queue import threading, Queue
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment