aboutsummaryrefslogtreecommitdiff
path: root/LICENSE (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-04-21Revert "Set default user and password"Ferass 'Vitali64' EL HAFIDI1-1/+1
This reverts commit abb4e4720d9641e80b533c2a59b43fad01e6ae75.
2022-04-21Set default user and passwordFerass 'Vitali64' EL HAFIDI1-1/+1
Signed-off-by: Ferass 'Vitali64' EL HAFIDI <vitali64pmemail@protonmail.com>
2022-04-21Extend the README a bitAndrew Yu1-4/+12
2022-04-21IDChat!Ferass 'Vitali64' EL HAFIDI3-117/+139
Signed-off-by: Ferass 'Vitali64' EL HAFIDI <vitali64pmemail@protonmail.com>
2022-01-07bump version to 1.9Hiltjo Posthuma1-1/+1
2021-12-25Reduce effective buffer size per channel input.Christoph Lohmann1-1/+8
This will curb the easy way to trigger a too long line sent to the server and prevent this error and connection drop.
2021-12-25Increase ping timeout for bad connections.Christoph Lohmann1-1/+1
2020-07-05ewritestr: Remove duplicate shift of offsetHiltjo Posthuma1-1/+0
Patch by mizmar@protonmail.com, thanks.
2020-01-17remove useless c->next = NULLDavid Demelier1-1/+1
2019-12-16minor style fix for ARGENDHiltjo Posthuma1-1/+1
see: https://9fans.github.io/plan9port/man/man3/arg.html
2019-12-16fix undefined behaviour of use of isalpha, isdigit and tolowerHiltjo Posthuma1-3/+3
"The argument c must be EOF or representable as an unsigned char; otherwise, the result is undefined."
2019-05-26Fix traversal of addrinfo listMichael Forney1-2/+2
Although the loop is executed once for every result, in each iteration it connects to the first result.
2019-02-12fix typo in NOTICE messagesHiltjo Posthuma1-1/+1
2018-07-23check input length before readingHiltjo Posthuma1-2/+8
thanks halbeno and quinq for the patches and feedback.
2018-06-02Add a config option to link against system or shipped strlcpyQuentin Rameau3-5/+9
2018-06-02Refactor MakefileQuentin Rameau2-46/+31
Declare it as POSIX-compliant Use $() instead of ${} Separate stock CFLAGS from user CFLAGS
2018-05-22fix typo in commentHiltjo Posthuma1-1/+1
pointed out by halbeno
2018-05-10Remove .hgtagsDavid Demelier1-10/+0
2018-02-04bump version to 1.8Hiltjo Posthuma3-3/+3
2017-12-03Makefile: add a dependency on arg.hQuentin Rameau1-0/+2
2017-12-03Fix arg.hQuentin Rameau1-6/+6
2017-11-18don't modify argv, use a counterHiltjo Posthuma1-4/+5
on some platforms (OpenBSD) this changes the exposed argv in tools using the kvm_* interface, such as ps and pgrep.
2017-11-18Makefile: simplifyHiltjo Posthuma1-18/+13
2017-07-09allow some more characters in the channel nameHiltjo Posthuma1-1/+1
2017-06-02merge my changes to masterHiltjo Posthuma12-465/+938
Special thanks to: - Wolfgang Corcoran-Mathe for sending patches and testing. - Nico Golde for maintaining ii for so long.
2016-10-13define EXIT_TIMEOUT and use that on ping timeouts. thanks Evan Gates for the ↵Nico Golde1-1/+3
idea!
2016-09-07errm eprint isnt declared here. thanks Ali H. FardanNico Golde1-1/+1
2016-09-06use pledge by default if compiled on openbsc and provide errno stringNico Golde2-4/+2
2016-09-02fix double backslashNico Golde1-1/+1
2016-09-02add OpenBSD pledge support - thanks Gleydson SoaresNico Golde2-0/+11
2016-02-24Fix channel use after freeing in main loopVasily Kolobkov1-2/+4
Signed-off-by: Nico Golde <nico@ngolde.de>
2016-02-24Check up on server messagesVasily Kolobkov1-5/+8
Signed-off-by: Nico Golde <nico@ngolde.de>
2015-11-04prevent nick collisions by only setting the nick after the server accepted ↵Nico Golde1-2/+7
it and print a message about change to server log
2015-11-04remove duplicate word, thanks Michael Stevens!Nico Golde2-2/+2
2015-03-22use _POSIX_PIPE_BUF if PIPE_BUF is not defined (as on FreeBSD); thanks ↵Nico Golde1-2/+2
Gleydson Soares!