aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 'rename_channel' -> 'rename' in src/Database.channelsGravatar jesopo2018-11-051-1/+1
|
* `server` should be passed in received.rename in modules/line_handler.pyGravatar jesopo2018-11-051-1/+1
|
* Don't pass connection_params through to reconnect in normal circumstancesGravatar jesopo2018-11-051-2/+1
|
* Change modules/sts.py to reference connection_params, fix some typos and logigGravatar jesopo2018-11-051-19/+13
| | | | issues
* Explicitly disconnect before reconnecting in modules/sts.pyGravatar jesopo2018-11-051-0/+1
|
* Only automatically reconnect to a server when we don't already have a serverGravatar jesopo2018-11-051-11/+8
| | | | with the same ID (to make reconnection work)
* 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
|
* Do an instant reconnect for !reconnect in modules/admin.pyGravatar jesopo2018-11-051-0/+2
|
* Clarify typing of .nickname/.nickname_lower/.name in IRCUserGravatar jesopo2018-11-051-1/+5
|
* Fix the order of some connection params, add `alias` as a seperate argument toGravatar jesopo2018-11-054-5/+7
| | | | IRCServer.Server
* Pass connection parameters around in their own object (IRCConnectionParameters)Gravatar jesopo2018-11-055-40/+61
|
* Check that a server's STS policy has a `duration` before doingGravatar jesopo2018-11-051-1/+1
| | | | rescheduling-on-disconnect
* Add missing import of json in utils.ircGravatar jesopo2018-11-051-1/+1
|
* Call Database.channels.rename in IRCServer.Server.rename_channelGravatar jesopo2018-11-051-0/+1
|
* Add Database.channels.rename, as part of support for IRCv3's RENAMEGravatar jesopo2018-11-051-0/+3
|
* Prettyprint channel RENAMEsGravatar jesopo2018-11-051-0/+5
|
* Support JSON messages tags, as per IRCv'3 message-tags-0.3 #318 pull requestGravatar jesopo2018-11-052-6/+12
|
* TRACE log when we set an STS policyGravatar jesopo2018-11-051-0/+1
|
* Support `draft/sts` as well as `sts`Gravatar jesopo2018-11-051-7/+9
|
* "Applying STS policy" should be TRACE, not DEBUGGravatar jesopo2018-11-051-1/+1
|
* Add missing ")" in modules/sts.pyGravatar jesopo2018-11-051-1/+1
|
* Add missing "," in modules/sts.pyGravatar jesopo2018-11-051-1/+1
|
* Reschedule STS expiration on disconnectGravatar jesopo2018-11-052-9/+24
|
* Explicitly *remove* STS policy when we get a duration of 0Gravatar jesopo2018-11-051-5/+9
|
* `info` does not exist in on_cap_new context in modules/sts.pyGravatar jesopo2018-11-051-0/+2
|
* One-shot STS policies should still be cleared if a reconnect failsGravatar jesopo2018-11-051-13/+10
|
* Made STS policies one-shot when upgrading from plaintext to tlsGravatar jesopo2018-11-051-4/+11
|
* `duration` does not exist in the context of _change_durationGravatar jesopo2018-11-051-1/+1
|
* Add support for IRCv3's STSGravatar jesopo2018-11-051-0/+46
|
* Give Logging.Log object to modulesGravatar jesopo2018-11-051-2/+4
|
* I forgot the "normal" event hook syntax!Gravatar jesopo2018-11-051-1/+1
|
* 'self.events' -> 'self._events' in IRCBotGravatar jesopo2018-11-051-1/+1
|
* Cache socket fileno in IRCServer.Server just before disconnectingGravatar jesopo2018-11-051-1/+3
|
* @utils.hook doesn't work outside of modules!Gravatar jesopo2018-11-051-5/+8
|
* 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
|
* Update modules/scripts.py to use utils.parse.hashflags instead ofGravatar jesopo2018-11-051-1/+1
| | | | utils.get_hashflags
* Clarify `items` and `var_items` typing in src.utils.parseGravatar jesopo2018-11-051-3/+4
|
* Add src.utils.parse.keyvalue, mostly for IRCv3 CAP negotiationGravatar jesopo2018-11-052-8/+11
|
* Refactor IRCServer .connect() logicGravatar jesopo2018-11-052-22/+15
|
* Fix a crash in modules/line_handler.py; QUIT can have an empty reason!Gravatar jesopo2018-11-051-1/+1
|
* Add __repr__ to utils.irc.IRCArgsGravatar jesopo2018-11-051-0/+2
|
* Don't set `args` to a split of the data left over when parsing out a command ifGravatar jesopo2018-11-041-2/+5
| | | | there's not a space after the command
* Implement utils.irc.IRCArgs.__len__Gravatar jesopo2018-11-041-2/+7
|
* Fix typo in utils.irc, 'self_args' -> 'self._args'Gravatar jesopo2018-11-041-1/+1
|
* Move definition of IRCArgs above IRCLineGravatar jesopo2018-11-041-8/+8
|
* Fix typo in utils.ircGravatar jesopo2018-11-041-1/+1
|