aboutsummaryrefslogtreecommitdiff
path: root/src/IRCServer.py
Commit message (Collapse)AuthorAgeFilesLines
* Split out Channels in to IRCChannels.Channels, not IRCChannel.ChannelsGravatar jesopo2018-11-111-2/+2
|
* Move channel tracking data/functions to src/IRCChannel.ChannelsGravatar jesopo2018-11-111-29/+5
|
* Add a way to more explicitly denote when a CAP handshake has ended earlyGravatar jesopo2018-11-091-1/+2
|
* Keep a track of bytes written and read per serverGravatar jesopo2018-11-081-2/+7
|
* Keep a dict of isupport key:values on IRCServer.ServerGravatar jesopo2018-11-081-1/+2
|
* Cache a server fileno from connect onwards, like we used toGravatar jesopo2018-11-051-1/+1
|
* Typo in IRCServer, 'nicknamme' -> 'nickname'Gravatar jesopo2018-11-051-1/+1
|
* Update IRCServer.__repr__ to use connection_paramsGravatar jesopo2018-11-051-1/+2
|
* Fall back to nickname for username/realname, as it used to beGravatar jesopo2018-11-051-3/+6
|
* Fix the order of some connection params, add `alias` as a seperate argument toGravatar jesopo2018-11-051-2/+4
| | | | IRCServer.Server
* 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() insteadGravatar jesopo2018-11-051-2/+3
| | | | of __init__
* 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 cyclicalGravatar jesopo2018-10-301-64/+73
| | | | references.
* 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 rawGravatar jesopo2018-10-151-1/+1
| | | | | events from src/IRCServer.py as call_unsafe to make errors like that more apparent.
* 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 giveGravatar jesopo2018-10-141-0/+8
| | | | double-interest to two "users" online at the same time sharing the same identity
* 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 aGravatar jesopo2018-10-061-5/+10
| | | | unix domain control socket!
* '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 ofGravatar jesopo2018-10-031-9/+9
| | | | related functionality
* 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 toGravatar jesopo2018-10-011-4/+14
| | | | modules/commands.py to reply to specific messages by use of msgids
* Add call_unsafe functions to EventManager.EventHook, to not swallow errors onGravatar jesopo2018-10-011-1/+1
| | | | specific function calls (e.g. preprocess.command)
* Implement client-side bindhostGravatar jesopo2018-10-011-1/+3
|
* Implement src/IRCObject.py to convert specific objects in to strings whenGravatar jesopo2018-10-011-2/+2
| | | | passing them to modules/scripts.py scripts
* 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