Commits
- Commit:
62b668a7b1ad5111003c87e218b3666f4503e580- From:
- Alexander Barton <alex@barton.de>
- Date:
ngIRCd 0.12.1
- Commit:
ecddfb7010650dc3c048b0b1ae57e11173672ba9- From:
- Alexander Barton <alex@barton.de>
- Date:
Updated ChangeLog for 0.12.1.
- Commit:
fb46757c48159c0b34b4d68d0061f0df8cb6ef36- From:
- Alexander Barton <alex@barton.de>
- Date:
Allow mixed line terminations (CR+LF/CR/LF) in non-RFC-compliant mode
Up to now ngIRCd accepted CR+LF as well as a single CR or LF in "non RFC
compliant" mode (the default). But ngIRCd became confused when it received
data containing mixed line endings (e. g. "111\r222\n333\r\n").
This patch enables ngIRCd (in "non RFC compliant" mode) to detect CR+LF,
CR, and LF as equally good line termination sequences and to always end the
command after the first one detected.
Some clients (for exmaple Trilian) are that ... broken to send such mixed
line terminations ...
First patch proposed by Scott Perry <scperry@ucsd.edu>,
Thanks to Ali Shemiran <ashemira@ucsd.edu> for testing!
(manually cherry picked from commit a84f7dcee5a1b32c74188aa5374d30eddd24852b)
- Commit:
b6b019dddc898e17fbe439d8bf33bd85d2da3b81- From:
- Alexander Barton <alex@barton.de>
- Date:
Updated NEWS and ChangeLog in preparation for ngIRCd 0.12.1.
- Commit:
ce3215acafe3d611c336a4d1e80bde93857b9539- From:
- Alexander Barton <alex@barton.de>
- Date:
Don't allow stray \r or \n in command parameters
If ngircd receives an input line like "COMMAND arg\nIRRELEVANT\r\n",
"arg\nIRRELEVANT" is passed as an argument to COMMAND. This can lead
to output like:
:ngircd.test.server 322 nick #chan 1 :
topicwithprecedingnewline
:ngircd.test.server 322 nick #nxtchan 1 :
[..]
Worse, this allows clients to piggyback irc commands, e.g.
"TOPIC #a :test\n:fake!~a@nonexistant JOIN :#a\r\n", which
causes the client to receive a JOIN command during /LIST output.
Bug reported by Scott Perry, first patch by Florian Westphal.
(cherry picked from commit 8644cbf197807909e4caea184278872cdeca1963)
- Commit:
edb59b8317e3b159d7080642b4a95b3d9a92e677- From:
- Alexander Barton <alex@barton.de>
- Date:
--configtest: return non-zero exit code if there are errors
(cherry picked from commit 6f7b669becb0ebf2058fa2bbe834de48c01de933)
- Commit:
42207d160b9b4679e5fb8746b5f9027906e9786a- From:
- Alexander Barton <alex@barton.de>
- Date:
Update ngIRCd manual pages
- Update timestamp,
- enhance some phrasing,
- and fix "Passive" ([Server]) formatting.
(cherry picked from commit aad49bd260494878aed6795c7a897ad1d28c3082)
- Commit:
a3dc42534ba17af1fd99c835e90f759cfc9fbb74- From:
- Jari Aalto <jari.aalto@cante.net>
- Via:
- Alexander Barton <alex@barton.de>
- Date:
Add option aliases -V (for --version) and -h (for --help).
This patch adds -h and -V short options (to complement the usage).
It is based on a patch attached to Debian bug #466063, see
<http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=466063>.
Idea by Jari Aalto <jari.aalto@cante.net>,
patch adapted by Alexander Barton <alex@barton.de>.
(cherry picked from commit 818a206a4261f3d4153b0ab5c2025d77002290f5)
- Commit:
bb81927ce4c05ef50a0c12046636e651809e9cf4- From:
- Florian Westphal <fw@strlen.de>
- Date:
Fix 'no-ipv6' compile error.
- Commit:
b2c0a89f45fdb8dc5504881bb6fb267c2bf82462- From:
- Florian Westphal <fw@strlen.de>
- Date:
make Listen parameter a comma-seperated list of addresses.
this also obsoletes ListenIPv4 and ListenIPv6 options.
If Listen is unset, it is treated as Listen="::,0.0.0.0".
Note: ListenIPv4 and ListenIPv6 options are still recognized,
but ngircd will print a warning if they are used in the config file.
Also, some plattforms require that ai_socktype
is set in the getaddrinfo() hints structure.
- Commit:
f44007f42f8537da7f9a093fa365b4867d5dac5c- From:
- Alexander Barton <alex@barton.de>
- Date:
ngIRCd 0.12.0
- Commit:
1a56c77751b97b4b761a1e2180e7de66f8f1dcf4- From:
- Alexander Barton <alex@barton.de>
- Date:
Updated NEWS and ChangeLog for ngIRCd 0.12.0.
- Commit:
78257374f0692ad1787d0aec779ffdb6c3f56c22- From:
- Florian Westphal <fw@strlen.de>
- Date:
If bind() fails, also print ip address and not just the port number.
- Commit:
fc93044909597798ca416dacc312bdb9c792c6ed- From:
- Florian Westphal <fw@strlen.de>
- Date:
Fix complie on FreeBSD 5.4 and AIX.
This is picked from commits
d9c26f3aeb35e979b72f7b0ac4220dbd07d7bc15
"ng_ipaddr.h must include netinet/in.h."
and
4e507881f30c8b4296d87de519658e45f8cb417f
"On AIX (for example) socklen_t is defined in sys/socket.h"
- Commit:
2e0c62df915694ebdc1a530cae1b802db2ad9ccc- From:
- Ali Shemiran <ashemira@ucsd.edu>
- Via:
- Florian Westphal <fw@strlen.de>
- Date:
Fix secret channel information leak
/who on a secret channel that the user is not a member of
now returns proper RPL_ENDOFWHO_MSG instead of nothing.
[picked from 12cd554af1709c44f35024d7d2fc368fb22f133d; without testcase]
- Commit:
c5ba599140903976c483097e90968a1a270c8e7c- From:
- Alexander Barton <alex@barton.de>
- Date:
ngIRCd 0.12.0-pre2
- Commit:
afc67ff323b4d62e1ceffae3e362f4dacc5940a3- From:
- Alexander Barton <alex@barton.de>
- Date:
Merge branch 'master' into branch-0-12-x
- Commit:
6cfc56064e25b5bb54fb1f9503820a7e38846303- From:
- Alexander Barton <alex@barton.de>
- Date:
Updated NEWS and ChangeLog for ngIRCd 0.12.0-pre2.
- Commit:
6052d04c60be8a77061b8da20429e02f836dc3ed- From:
- Alexander Barton <alex@barton.de>
- Date:
Merge branch 'master' into branch-0-12-x
- Commit:
4a81367dac3a34d3bad3035b78d40e960c0cca75- From:
- Alexander Barton <alex@barton.de>
- Date:
--configtest: fix missing whitespace at "ConnectIPv4" option.
- Commit:
91943193993d44d8cb61508236cacd66af87c179- From:
- Florian Westphal <fw@strlen.de>
- Via:
- Alexander Barton <alex@barton.de>
- Date:
Testsuite: remove erroneous ConfUID setting in config file.
The config file for ngircds test suite contained obsolete
ConfUID/ConfGID settings, causing ngircd to needlesly complain when
started as non-root (which is hopefully the _normal_ case...)
- Commit:
32bf6d4de0d565824be6599342a5f5f770d4f7d5- From:
- Alexander Barton <alex@barton.de>
- Date:
Merge branch 'master' into branch-0-12-x
Fixed bug 81:
When trying to part a channel ("PART #channel") the client is not member of
the daemon now correctly reports the numeric ERR_NOTONCHANNEL (442) insted
of ERR_NOSUCHCHANNEL (403).
- Commit:
8c425945a272cd497b056a92a870d07425429ff9- From:
- Alexander Barton <alex@barton.de>
- Date:
--enable-ipv6: fix indentation in ./configure --help output.
- Commit:
33b1204349ed1d26564b562599414fa2718db276- From:
- Alexander Barton <alex@barton.de>
- Date:
Get rid of cvs-version.* and CVSDATE definition.
(cherry picked from commit b187fac244f4e14705f882ba7c43eef0238e2830)
- Commit:
b187fac244f4e14705f882ba7c43eef0238e2830- From:
- Alexander Barton <alex@barton.de>
- Date:
Get rid of cvs-version.* and CVSDATE definition.
