| Commit message (Expand) | Author | Age | Files | Lines |
| * | Abstract ssl socket wrapping away so we can reuse it | jesopo | 2019-02-10 | 1 | -13/+4 |
| * | Set default values for various types of channel modes (src/IRCServer.py) | jesopo | 2019-02-09 | 1 | -4/+9 |
| * | Also capture channel setting-related modes (e.g. +f for flood settings) | jesopo | 2019-02-09 | 1 | -0/+1 |
| * | Send `CAP LS` after we send `PASS` (if applicable) (src/IRCServer.py) | jesopo | 2019-02-07 | 1 | -1/+2 |
| * | If a server has a hostname that's not an IP, use it as SNI server name | jesopo | 2019-02-06 | 1 | -1/+6 |
| * | Don't break if we try to "finish" a waiting CAP when it's already finished | jesopo | 2019-02-06 | 1 | -1/+1 |
| * | Don't .lower() nicknames in Database.py, it doesn't know about IRC casemapping | jesopo | 2019-02-06 | 1 | -2/+3 |
| * | STARTTLS was removed long ago | jesopo | 2019-02-05 | 1 | -2/+0 |
| * | Manually count ACK/NAK for REQed CAPs before ENDing CAP negotiation | jesopo | 2019-02-05 | 1 | -0/+2 |
| * | Make sure more than one hook can catch `preprocess.send` but still respect any•••that return a change to the output (src/IRCServer.py)
| jesopo | 2019-01-26 | 1 | -2/+5 |
| * | `IRCServer.Server.irc_lower` should have a return type hint of `str` | jesopo | 2019-01-24 | 1 | -1/+1 |
| * | Typo, `IRCServer.Server.irc_equal` -> `IRCServer.Server.irc_equals` | jesopo | 2019-01-24 | 1 | -1/+1 |
| * | Add `irc_lower()` and `irc_equals()` to IRCServer.Server so that no where else•••in the code has to know about the server having a casemapping
| jesopo | 2019-01-24 | 1 | -7/+11 |
| * | Only pop MODE args when we're certain we should (pays more attention to•••CHANMODES ISUPPORT)
| jesopo | 2018-12-06 | 1 | -0/+2 |
| * | A couple of tweaks to clarify some type hints | jesopo | 2018-12-02 | 1 | -1/+4 |
| * | `data` is now `line` | jesopo | 2018-12-02 | 1 | -1/+1 |
| * | Remove `print` calls from IRCBot.py, move received data logging to IRCServer | jesopo | 2018-12-02 | 1 | -3/+5 |
| * | Add .nickname/.username/.realname/.hostname to IRCServer | jesopo | 2018-11-27 | 1 | -0/+5 |
| * | Add a way to catch when a writebuffer is emptied so we can e.g. assure a QUIT is•••sent before shutting down the bot
| jesopo | 2018-11-27 | 1 | -0/+3 |
| * | `IRCServer.Server.get_user` should be 'typing.Optional[IRCUser.User]', not just•••'IRCUser.user'
| jesopo | 2018-11-21 | 1 | -1/+2 |
| * | typo in src/IRCServer.py, 'typing.float' -> 'float' | jesopo | 2018-11-21 | 1 | -1/+1 |
| * | Fix mypy issues caused by overwriting a `bytes` variable with a `str` object | jesopo | 2018-11-21 | 1 | -3/+3 |
| * | Add more return type annotations to src/IRCServer.Server | jesopo | 2018-11-21 | 1 | -21/+27 |
| * | Add some missing return type annotations in src/IRCServer.Server | jesopo | 2018-11-21 | 1 | -4/+4 |
| * | Add IRCServer.Server.get_target, to get an IRCChannel if the given target is a•••channel name or an IRCUser
| jesopo | 2018-11-21 | 1 | -0/+9 |
| * | Don't enable write throttling until we get 005 | jesopo | 2018-11-19 | 1 | -1/+4 |
| * | Better support passing "send" events through the parsers already present in•••modules/line_handler.py
| jesopo | 2018-11-14 | 1 | -27/+1 |
| * | Print MOTD in modules/print_activity.py (after caching it in•••modules/line_handler.py)
| jesopo | 2018-11-13 | 1 | -0/+3 |
| * | Split out Channels in to IRCChannels.Channels, not IRCChannel.Channels | jesopo | 2018-11-11 | 1 | -2/+2 |
| * | Move channel tracking data/functions to src/IRCChannel.Channels | jesopo | 2018-11-11 | 1 | -29/+5 |
| * | Add a way to more explicitly denote when a CAP handshake has ended early | jesopo | 2018-11-09 | 1 | -1/+2 |
| * | Keep a track of bytes written and read per server | jesopo | 2018-11-08 | 1 | -2/+7 |
| * | Keep a dict of isupport key:values on IRCServer.Server | jesopo | 2018-11-08 | 1 | -1/+2 |
| * | Cache a server fileno from connect onwards, like we used to | jesopo | 2018-11-05 | 1 | -1/+1 |
| * | Typo in IRCServer, 'nicknamme' -> 'nickname' | jesopo | 2018-11-05 | 1 | -1/+1 |
| * | Update IRCServer.__repr__ to use connection_params | jesopo | 2018-11-05 | 1 | -1/+2 |
| * | Fall back to nickname for username/realname, as it used to be | jesopo | 2018-11-05 | 1 | -3/+6 |
| * | Fix the order of some connection params, add `alias` as a seperate argument to•••IRCServer.Server
| jesopo | 2018-11-05 | 1 | -2/+4 |
| * | Pass connection parameters around in their own object (IRCConnectionParameters) | jesopo | 2018-11-05 | 1 | -22/+17 |
| * | Call Database.channels.rename in IRCServer.Server.rename_channel | jesopo | 2018-11-05 | 1 | -0/+1 |
| * | Cache socket fileno in IRCServer.Server just before disconnecting | jesopo | 2018-11-05 | 1 | -1/+3 |
| * | it should be self.bindhost, now that we've moved the logic to .connect() instead•••of __init__
| jesopo | 2018-11-05 | 1 | -2/+3 |
| * | Typo in src/IRCServer.py; 'self.AF_INET' -> 'socket.AF_INET' | jesopo | 2018-11-05 | 1 | -1/+1 |
| * | Refactor IRCServer .connect() logic | jesopo | 2018-11-05 | 1 | -18/+9 |
| * | Implement IRCv3's `draft/rename` | jesopo | 2018-11-04 | 1 | -0/+5 |
| * | Fix some non-explicit None returns, add type hints to important variables | jesopo | 2018-10-31 | 1 | -15/+15 |
| * | Fix/refactor issues brought up by type hint linting | jesopo | 2018-10-30 | 1 | -1/+1 |
| * | Add type/return hints throughout src/ and, in doing so, fix some cyclical•••references.
| jesopo | 2018-10-30 | 1 | -64/+73 |
| * | Specifically handle OSError (e.g. Network is unreachable) as a disconnect | jesopo | 2018-10-26 | 1 | -1/+1 |
| * | Add missing `return` in src/IRCServer.py.get_user_setting | jesopo | 2018-10-18 | 1 | -1/+1 |