aboutsummaryrefslogtreecommitdiff
path: root/src/IRCServer.py
Commit message (Expand)AuthorAgeFilesLines
* Pass connection parameters around in their own object (IRCConnectionParameters)Gravatar jesopo2018-11-051-22/+17
* Call Database.channels.rename in IRCServer.Server.rename_channelGravatar jesopo2018-11-051-0/+1
* Cache socket fileno in IRCServer.Server just before disconnectingGravatar jesopo2018-11-051-1/+3
* it should be self.bindhost, now that we've moved the logic to .connect() instead•••of __init__ Gravatar jesopo2018-11-051-2/+3
* Typo in src/IRCServer.py; 'self.AF_INET' -> 'socket.AF_INET'Gravatar jesopo2018-11-051-1/+1
* Refactor IRCServer .connect() logicGravatar jesopo2018-11-051-18/+9
* Implement IRCv3's `draft/rename`Gravatar jesopo2018-11-041-0/+5
* Fix some non-explicit None returns, add type hints to important variablesGravatar jesopo2018-10-311-15/+15
* Fix/refactor issues brought up by type hint lintingGravatar jesopo2018-10-301-1/+1
* Add type/return hints throughout src/ and, in doing so, fix some cyclical•••references. Gravatar jesopo2018-10-301-64/+73
* Specifically handle OSError (e.g. Network is unreachable) as a disconnectGravatar jesopo2018-10-261-1/+1
* Add missing `return` in src/IRCServer.py.get_user_settingGravatar jesopo2018-10-181-1/+1
* "Cannot" -> "can't" in IRCServer encoding fallbackGravatar jesopo2018-10-171-1/+1
* TRACE log when we have to use fallback encodingGravatar jesopo2018-10-171-2/+4
* event["args"] is an array already, args_split does not exist. Also send raw•••events from src/IRCServer.py as call_unsafe to make errors like that more apparent. Gravatar jesopo2018-10-151-1/+1
* Typo in src/IRCServer.py, 'defau;t' -> 'default'Gravatar jesopo2018-10-141-1/+1
* Work directly from users in modules/coins.py.interest(), so as to not give•••double-interest to two "users" online at the same time sharing the same identity Gravatar jesopo2018-10-141-0/+8
* Improve "non-complete line" TRACE logGravatar jesopo2018-10-111-2/+2
* TRACE log when we receive and buffer a non-complete lineGravatar jesopo2018-10-111-0/+3
* Add a way to track non-IRC sockets within the main epoll loop; use this for a•••unix domain control socket! Gravatar jesopo2018-10-061-5/+10
* 'ssl-certificate'/'ssl-key' -> 'tls-certificate'/'tls-key'Gravatar jesopo2018-10-051-2/+2
* 'mode_prefixes' -> prefix_modes and prefix_symbolsGravatar jesopo2018-10-031-3/+5
* Move src/Utils.py in to src/utils/, splitting functionality out in to modules of•••related functionality Gravatar jesopo2018-10-031-9/+9
* Add a way to not add a user automatically in IRCServer.get_userGravatar jesopo2018-10-031-3/+3
* Support changing command responses from PRIVMSG to NOTICEGravatar jesopo2018-10-021-6/+17
* Better support for msgtags with PRIVMSGs; put functionality in to•••modules/commands.py to reply to specific messages by use of msgids Gravatar jesopo2018-10-011-4/+14
* Add call_unsafe functions to EventManager.EventHook, to not swallow errors on•••specific function calls (e.g. preprocess.command) Gravatar jesopo2018-10-011-1/+1
* Implement client-side bindhostGravatar jesopo2018-10-011-1/+3
* Implement src/IRCObject.py to convert specific objects in to strings when•••passing them to modules/scripts.py scripts Gravatar jesopo2018-10-011-2/+2
* Add modules/strip_color.pyGravatar jesopo2018-09-301-3/+7
* Move src/IRCLineHandler.py to modules/line_handler.pyGravatar jesopo2018-09-301-1/+1
* Move most code in root directory to src/Gravatar jesopo2018-09-241-0/+402