Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-11-19 | Correctly alias 'channel' to '#channel' | LemonBoy | |
Use the same approach used in 'irc_channels_join'. Remove 'irc_nick_strip' since it was unused. | |||
2015-11-09 | Use the PARAM_FLAG_STRIP_TRAILING_WS flag wherever possible. | LemonBoy | |
2015-10-28 | Preserve the sasl_ options across reconnects. | LemonBoy | |
2015-10-03 | Merge pull request #314 from LemonBoy/sasl_session | dx | |
Save the sasl state in the session | |||
2015-10-02 | Set HOST_NAME_MAX to 255, if it's undefined. | Alexander Færøy | |
Thanks to Jilles and dx. Fixes #309 | |||
2015-10-02 | Don't set the usermode field if blank | LemonBoy | |
Fixes FS#919 | |||
2015-10-02 | Save the sasl state in the session | LemonBoy | |
This is seemingly required to have irssi re-authenticate after a restart. | |||
2015-09-26 | Merge pull request #304 from LemonBoy/sasl_user_options | ailin-nemui | |
Allow the user to set and modify the SASL parameters | |||
2015-09-26 | Allow the user to set and modify the SASL parameters | LemonBoy | |
The /NETWORK ADD command now is able to modify the SASL mechanism, the username and the password on a chatnet basis. | |||
2015-09-24 | Merge pull request #301 from dequis/dcc-get-ntfs-temp-bug | Geert Hauwaerts | |
dcc-get: close() the temp fd so we don't get ETXTBSY in ntfs mounts | |||
2015-09-23 | dcc-get: close() the temp fd so we don't get ETXTBSY in ntfs mounts | Robert C Jensen | |
Patch from debian bug 696963 [1] Fixes github bug #220 and flyspray bug 867 [2] [1]: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=696963 [2]: http://bugs.irssi.org/index.php?do=details&task_id=867 | |||
2015-09-23 | Add multi-prefix to list of capabilities to request | dequis | |
Turns out event_names_list() in irc-nicklist.c already handles this. event_who() just ignores it, which is probably a good idea since some of the irc servers I tested this with have a bug that results in sending multiple prefixes in the NAMES reply but not in the WHO one (they were forks of ircd-hybrid before 7.3.0) And NAMES always happens, anyway. WHO is omitted sometimes for huge channels. | |||
2015-09-22 | Revert "Network and IPv{4,6} related changes" | ailin-nemui | |
2015-09-22 | Merge pull request #290 from LemonBoy/ipv6 | ailin-nemui | |
Network and IPv{4,6} related changes | |||
2015-09-21 | Merge pull request #267 from kyak/master | ailin-nemui | |
Add expandos for hostname | |||
2015-09-21 | Initial work to make irssi respect the resolved ip order | LemonBoy | |
Ip's aren't selected using random() anymore, also select the ip version by using getaddrinfo and some proper hints. | |||
2015-09-20 | Merge pull request #278 from LemonBoy/sasl | dx | |
SASL support | |||
2015-09-21 | Use formats instead of g_warning | LemonBoy | |
Add some copyright headers here and there too. | |||
2015-09-20 | More format warnings removed. | Alexander Færøy | |
2015-09-20 | Fix formatting warnings. | Alexander Færøy | |
2015-09-20 | Fix warning. | Alexander Færøy | |
2015-09-20 | Use g_string_append() instead of g_string_append_c() for string. | Alexander Færøy | |
2015-09-20 | Use g_string_append() instead of g_string_append_c() for string. | Alexander Færøy | |
2015-09-19 | Merge remote-tracking branch 'origin' into sasl | LemonBoy | |
2015-09-19 | Add setting to configure rejoin on reconnect behaviour | Jari Matilainen | |
Closes #169 | |||
2015-09-19 | Merge pull request #259 from dequis/irssiproxy | ailin-nemui | |
Updates for irssiproxy | |||
2015-09-11 | Don't handle 908 as a critical failure | LemonBoy | |
"if the mechanism is unknown, 908 is optional, 904 (or equivalent error condition) is required" | |||
2015-09-11 | Parse the error string received by the server | LemonBoy | |
So that in case of SASL failure the user sees a nice error message. | |||
2015-09-11 | Consider the SASL handshake successful on 903 | LemonBoy | |
2015-09-11 | Handle event 906 and 908 | LemonBoy | |
2015-09-11 | Explicitly set the authorization id during the PLAIN handshake | LemonBoy | |
On error show the user the message sent by the server. | |||
2015-09-11 | Replace spaces with tabs | LemonBoy | |
2015-09-11 | Address all the points outlined in the first review | LemonBoy | |
Replace G_SOURCE_REMOVE with FALSE for the compatibility sake. Zero the timeout id after g_source_remove and when exipred. Save the sasl_* options in sig_chatnet_saved(). | |||
2015-09-11 | SASL support | LemonBoy | |
The only supported methods are PLAIN and EXTERNAL, the latter is untested as of now. The code gets the values from the keys named sasl_{mechanism,username,password} specified for each chatnet. | |||
2015-09-10 | Merge pull request #248 from LemonBoy/chantypes | Alexander Færøy | |
Implement CHANTYPES support | |||
2015-09-02 | Fix two minor issues outlined in the PR#222 | LemonBoy | |
irc-cap.c has now a licence header. A minor style fix in misc.c | |||
2015-09-02 | Whitespace fix | LemonBoy | |
2015-08-29 | Remove extra line break | kyak | |
How did this extra break cripple in here? | |||
2015-08-29 | Use HOST_NAME_MAX for userhost and hostname expandos | kyak | |
Use HOST_NAME_MAX instead of hardcoded 100 for userhost and hostname expandos. | |||
2015-08-29 | Use "(none)" as fallback for hostname and userhost expandos | kyak | |
Use "(none)" instead of "??" for hostname and userhost expandos when these can't be reliably detected. | |||
2015-08-29 | In expando_hostname, set *free_ret to TRUE | kyak | |
*free_ret must be set to TRUE in both cases, since we return some newly initialised memory | |||
2015-08-26 | Clean up in hostname expando before return | kyak | |
Clean up the vector resulting from g_strsplit before returning from expando_hostname(). Also, use g_strdup() instead of g_strconcat() to return the pointer to hostname. | |||
2015-08-24 | Merge pull request #222 from LemonBoy/cap-support | Alexander Færøy | |
[RFC] CAP support | |||
2015-08-20 | Send the CAP LS after sending the proxy strings | LemonBoy | |
Patch by @dequis | |||
2015-07-25 | Replace \n with \r\n in irssiproxy source, fixes bug | blha303 | |
2015-07-19 | Add expandos for hostname | kyak | |
See http://bugs.irssi.org/index.php?do=details&task_id=829 | |||
2015-06-14 | Fix 'address already in use' when changing irssiproxy_ports | dequis | |
When changing the value of irssiproxy_ports to use a different network name in a port that was already bound (so like changing from asd=6667 to sdf=6667) it would throw "address already in use". This fixes it by delaying the add_listen() calls after all the remove_listen() were called. | |||
2015-06-14 | Rename /proxy command to /irssiproxy for clarity | dequis | |
2015-06-14 | Merge branch 'master' into irssiproxy | dequis | |
Conflicts: src/irc/proxy/listen.c | |||
2015-06-12 | Add server check in irc_server_connect (#208) | Geert Hauwaerts | |
Fail instead of crash, if irc_server_connect is called without object. (#208) |