]> arthur.barton.de Git - ngircd-alex.git/log
ngircd-alex.git
15 years agoInclude "mcheck.h" when using mtrace().
Alexander Barton [Mon, 18 Aug 2008 21:27:56 +0000 (23:27 +0200)]
Include "mcheck.h" when using mtrace().

15 years agoSECURITY: Fixed a message handling bug which could crash the daemon.
Alexander Barton [Sun, 17 Aug 2008 15:13:39 +0000 (17:13 +0200)]
SECURITY: Fixed a message handling bug which could crash the daemon.

Some message targets could lead to a NULL pointer dereference and therefore
could crash the daemon (denial of service).
(cherry picked from commit e493ad2d30ff80bca2556cde2212e367cb006517)

15 years agoEnable GNU libc "memory tracing" when compiled with debug code.
Alexander Barton [Wed, 13 Aug 2008 14:00:57 +0000 (16:00 +0200)]
Enable GNU libc "memory tracing" when compiled with debug code.

This patch lets ngIRCd activate "memory tracing" of the GNU libc when
compiled with debug code (configure: --enable-debug) and the functionality
is available on the system.
(http://www.gnu.org/software/libc/manual/html_node/Allocation-Debugging.html)

15 years agoNew make target: "osxpkg" to create an Mac OS X installer package.
Alexander Barton [Tue, 12 Aug 2008 15:30:38 +0000 (17:30 +0200)]
New make target: "osxpkg" to create an Mac OS X installer package.

This patch adds a new make target, "osxpkg", to the main Makefile which
gereates a Apple Mac OS X installer package of ngIRCd. The packagemaker(1)
project bundle is stored in contrib/MacOSX/ngIRCd.pmdoc.

15 years agoClean up Mac OS X Xcode environment.
Alexander Barton [Mon, 11 Aug 2008 15:39:26 +0000 (17:39 +0200)]
Clean up Mac OS X Xcode environment.

- Remove obsolete contrib/MacOSX/cvs-version.h
- Change SDK to 10.4

15 years agodoc/Platforms.txt: added Debian GNU/Hurd, "i686/unknown/gnu0.3"
Alexander Barton [Sun, 10 Aug 2008 16:08:09 +0000 (18:08 +0200)]
doc/Platforms.txt: added Debian GNU/Hurd, "i686/unknown/gnu0.3"

15 years agoAdded CVE identifiers to ChangeLog.
Alexander Barton [Sun, 10 Aug 2008 12:26:51 +0000 (14:26 +0200)]
Added CVE identifiers to ChangeLog.

see http://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=ngircd

15 years agoRemove de.barton.ngircd.plist on "make clean", its a generated file.
Alexander Barton [Wed, 6 Aug 2008 17:47:53 +0000 (19:47 +0200)]
Remove de.barton.ngircd.plist on "make clean", its a generated file.

15 years agoMake ngIRCd compile and run on NeXTSTEP 3.3 and OPENSTEP 4.2
Alexander Barton [Fri, 1 Aug 2008 14:21:16 +0000 (16:21 +0200)]
Make ngIRCd compile and run on NeXTSTEP 3.3 and OPENSTEP 4.2

by Steven D. Blackford <kb7sqi@aol.com>:

"I wanted to let you know that I've done a quick port of ngircd-0.12.0 for
NEXTSTEP3.3/OPENSTEP4.2. There wasn't a lot of changes required to get it
to compile clean, but I did make the necessary changes so that I didn't
have to use -posix flag. The NeXT has a pretty buggy POSIX implementation
so I always try to work around it. :-)
Anway, here's the changes required to get it to compile."

15 years agoMerge branch 'master' of git://ngircd.barton.de/ngircd
Alexander Barton [Thu, 31 Jul 2008 12:36:39 +0000 (14:36 +0200)]
Merge branch 'master' of git://ngircd.barton.de/ngircd

15 years agoInstall /Library/LaunchDaemons/de.barton.ngircd.plist into $(DESTDIR)
Alexander Barton [Thu, 31 Jul 2008 12:35:22 +0000 (14:35 +0200)]
Install /Library/LaunchDaemons/de.barton.ngircd.plist into $(DESTDIR)

15 years agoFAQ: add entry about /OPER and OperCanUseMode
Florian Westphal [Thu, 31 Jul 2008 12:11:05 +0000 (14:11 +0200)]
FAQ: add entry about /OPER and OperCanUseMode

15 years agoGIT: added src/testsuite/message-test to ignore list.
Alexander Barton [Sun, 27 Jul 2008 18:51:37 +0000 (20:51 +0200)]
GIT: added src/testsuite/message-test to ignore list.

15 years agoFix Validate_Args(): unused parameter "Idx" and "Req"
Alexander Barton [Sun, 27 Jul 2008 18:35:01 +0000 (20:35 +0200)]
Fix Validate_Args(): unused parameter "Idx" and "Req"

This patch fixes the following error message of GCC (tested with version
4.3.0) when not compiling ngIRCd in "strict RFC" mode:

parse.c: In function "Validate_Args":
parse.c:341: error: unused parameter "Idx"
parse.c:341: error: unused parameter "Req"

15 years agomessage-test: Disable two tests using "localhost" as host name
Alexander Barton [Sun, 27 Jul 2008 16:03:13 +0000 (18:03 +0200)]
message-test: Disable two tests using "localhost" as host name

Some operating systems, for example OpenBSD and OpenSolaris, use
"localhost.<domain>" instead of just "localhost" for 127.0.0.1, so
the "message-test" using "localhost" failed on such systems.

Don't have an idee how to make this work on all platforms ... :-/

So I simply disabled the two affected tests to make the testsuite
run on OpenBSD and OpenSolaris again.

15 years agoFix Send_Message(): "lastCurrentTarget" may be used uninitialized
Alexander Barton [Sun, 27 Jul 2008 15:11:40 +0000 (17:11 +0200)]
Fix Send_Message(): "lastCurrentTarget" may be used uninitialized

This patch fixes the following warning of GCC 4.3.1:

irc.c: In function "Send_Message":
irc.c:315: error: "lastCurrentTarget" may be used uninitialized in
this function

15 years agoFix t_diff(): declaration of 'div' shadows a global declaration
Alexander Barton [Sun, 27 Jul 2008 13:58:06 +0000 (15:58 +0200)]
Fix t_diff(): declaration of 'div' shadows a global declaration

This patch fixes the following GCC warning message:
irc-info.c:422: warning: declaration of 'div' shadows a global declaration

15 years agoCosmetic whitespace and line length fixes, mostly in Send_Message(). bug77-PRIVMSG-NOTICE
Alexander Barton [Sun, 27 Jul 2008 13:50:51 +0000 (15:50 +0200)]
Cosmetic whitespace and line length fixes, mostly in Send_Message().

15 years agoAdded "message-test" to Makefile, so it is distrubuted and run.
Alexander Barton [Sun, 27 Jul 2008 12:45:04 +0000 (14:45 +0200)]
Added "message-test" to Makefile, so it is distrubuted and run.

15 years agoCleaned up PRIVMSG and NOTICE patches.
Brandon Beresini [Fri, 13 Jun 2008 04:54:05 +0000 (21:54 -0700)]
Cleaned up PRIVMSG and NOTICE patches.

15 years agoCumulative Message Patch
Brandon Beresini [Wed, 11 Jun 2008 18:35:50 +0000 (11:35 -0700)]
Cumulative Message Patch

15 years agoDon't allow empty channel names ("#") in strict RFC mode.
Alexander Barton [Tue, 22 Jul 2008 11:22:54 +0000 (13:22 +0200)]
Don't allow empty channel names ("#") in strict RFC mode.

This closes Bug #88.

Patch proposed by Eric <egrunow@ucsd.edu>, but with wrong length
comparision: please note that Channel_IsValidName() checks the name
INCLUDING the prefix, so the test must be length<=1!

15 years agoReturn 461 (syntax error) on "JOIN :" and "PART :"
Alexander Barton [Tue, 22 Jul 2008 11:18:19 +0000 (13:18 +0200)]
Return 461 (syntax error) on "JOIN :" and "PART :"

Up to this patch ngIRCd did not return any result (GIT master) or a badly
formated 403 (":irc.server 403 test  :No such channel" [note the two
spaces!], branch-0-12-x) on the above commands, this patch changes the
behaviour to reflect ircd 2.11 which returns 461 in both cases.

15 years agoChannel_Join(): Code cleanup.
Alexander Barton [Tue, 22 Jul 2008 11:07:57 +0000 (13:07 +0200)]
Channel_Join(): Code cleanup.

15 years agoAdded more supported and tested platforms to doc/Platforms.txt.
Alexander Barton [Mon, 21 Jul 2008 12:59:28 +0000 (14:59 +0200)]
Added more supported and tested platforms to doc/Platforms.txt.

15 years agoFixes to misc-test: accept "localhost.<domain>" as well as "localhost"
Alexander Barton [Mon, 21 Jul 2008 11:40:22 +0000 (13:40 +0200)]
Fixes to misc-test: accept "localhost.<domain>" as well as "localhost"

Some operating systems, for example OpenBSD, use "localhost.<domain>"
instead of "localhost", so the "who-test" expecting "localhost" failed
on such systems.

(Please see 149859c5fecc..., which fixes this for the who-test already)

15 years agoRevert "dpkg-shlibdeps: warning: dependency on libnsl.so.1 [..]"
Alexander Barton [Wed, 9 Jul 2008 16:36:40 +0000 (18:36 +0200)]
Revert "dpkg-shlibdeps: warning: dependency on libnsl.so.1 [..]"

- Solaris needs both -lsocket _and_ -lnsl
- A/UX needs -lUTIL

"... which totally sucks because we'd link libnsl on Linux, too
(where its not needed at all). So, we have to figure out how to tell
autocrap to NOT put -lnsl there unless it exports a symbol we need.
This also means that [...] has to be reverted (or done properly)."
-- Florian Westphal @ #ngircd

This reverts commit 2b14234abc252383679bae2d23861b773dc9713e.

15 years agodpkg-shlibdeps: warning: dependency on libnsl.so.1 [..]
Florian Westphal [Mon, 30 Jun 2008 20:50:42 +0000 (22:50 +0200)]
dpkg-shlibdeps: warning: dependency on libnsl.so.1 [..]
(they use none of its symbols).

So, rip out that AC_CHECK_LIB cruft, pointed out by Christoph Biedl.

If there are platforms that really need that we should
only link when we actually use these libraries.

15 years agoMerge autogen.sh changes
Alexander Barton [Fri, 27 Jun 2008 04:07:41 +0000 (06:07 +0200)]
Merge autogen.sh changes

Merge commit 'alex/master'

15 years agoautogen.sh: Don't set AUTO{CONF|MAKE}_VERSION and WANT_AUTO{CONF|MAKE}
Alexander Barton [Fri, 27 Jun 2008 03:55:45 +0000 (05:55 +0200)]
autogen.sh: Don't set AUTO{CONF|MAKE}_VERSION and WANT_AUTO{CONF|MAKE}

On some systems (for example Gentoo Linux, FreeBSD, and OpenBSD), these
variables are used to select which version of GNU automake and autoconf
to use, but we shouldn't depend on a specific version -- instead we
should use the "system default". So probably it is up to the user to
set these variables accordingly to set up some wrapper scripts of his
operating system distribution.

15 years agoautogen.sh: correctly test for and export ACLOCAL variable
Alexander Barton [Fri, 27 Jun 2008 03:44:04 +0000 (05:44 +0200)]
autogen.sh: correctly test for and export ACLOCAL variable

15 years agoTranslated comments from German to English
Eric Grunow [Fri, 13 Jun 2008 00:27:07 +0000 (17:27 -0700)]
Translated comments from German to English

15 years agoFix GCC warnings for possibly uninitialized variables in IRC_JOIN
Alexander Barton [Mon, 16 Jun 2008 11:07:50 +0000 (13:07 +0200)]
Fix GCC warnings for possibly uninitialized variables in IRC_JOIN

This patch fixes the following two warnings of GCC 4.2.4:

irc-channel.c: In function "IRC_JOIN":
irc-channel.c:185:
 warning: "lastkey" may be used uninitialized in this function
irc-channel.c:185:
 warning: "lastchan" may be used uninitialized in this function

15 years agoGIT: added src/src/config.h.in~ to ignore list.
Alexander Barton [Wed, 11 Jun 2008 14:02:06 +0000 (16:02 +0200)]
GIT: added src/src/config.h.in~ to ignore list.

15 years agoAllow mixed line terminations (CR+LF/CR/LF) in non-RFC-compliant mode
Alexander Barton [Wed, 11 Jun 2008 14:00:38 +0000 (16:00 +0200)]
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!

15 years agoDon't allow stray \r or \n in command parameters
Alexander Barton [Fri, 30 May 2008 12:49:56 +0000 (14:49 +0200)]
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.

15 years agoGIT: ignore de.barton.ngircd.plist, it is a generated file.
Alexander Barton [Wed, 28 May 2008 01:00:22 +0000 (03:00 +0200)]
GIT: ignore de.barton.ngircd.plist, it is a generated file.

15 years agongircd.init: use LSB logging functions, if available.
Alexander Barton [Tue, 27 May 2008 23:50:18 +0000 (01:50 +0200)]
ngircd.init: use LSB logging functions, if available.

15 years ago--configtest: return non-zero exit code if there are errors
Alexander Barton [Tue, 27 May 2008 22:31:20 +0000 (00:31 +0200)]
--configtest: return non-zero exit code if there are errors

15 years agoHandle_Buffer(): code cleanup.
Alexander Barton [Mon, 26 May 2008 21:38:32 +0000 (23:38 +0200)]
Handle_Buffer(): code cleanup.

Both callers ignore the return code of this function, so get rid of it,
but make sure that the client is disconnected on errors.

15 years agoConn_Handler(): cleanup code, add/translate comments.
Alexander Barton [Mon, 26 May 2008 19:38:27 +0000 (21:38 +0200)]
Conn_Handler(): cleanup code, add/translate comments.

In addition, the "timeout" variable has been removed because it is
unnecessary today: Handle_Buffer() handles all the data it can handle,
and io_dispatch() returns immediately when new data is available. So
we don't have to double-check but better sleep. Pointed out by Florian.

15 years agoUse strtok_r instead of strchr in IRC_JOIN.
Scott Perry [Mon, 26 May 2008 10:38:15 +0000 (12:38 +0200)]
Use strtok_r instead of strchr in IRC_JOIN.

This patch does significant cleanup on the join code by using strtok_r
instead of mangling strchr to parse channel names and keys in parallel when
a JOIN command contains a list of channels and keys.

Also adds an strtok_r implementation to libportab.

15 years agoMac OS X LaunchDaemon script: log messages to /Library/Logs/ngIRCd.log
Alexander Barton [Mon, 26 May 2008 15:48:02 +0000 (17:48 +0200)]
Mac OS X LaunchDaemon script: log messages to /Library/Logs/ngIRCd.log

15 years agoconfigure.in: don't check for "obvious" standard functions.
Florian Westphal [Sun, 25 May 2008 18:16:25 +0000 (20:16 +0200)]
configure.in: don't check for "obvious" standard functions.

Drop checks for the following C standard functions:
malloc, memmove, memset, realloc, strchr, strcspn, strerror, strstr.

Rationale: These are standard K&R/C89 functions, no point in
''making sure they exist''.

15 years agoReset client idle time on NICK, JOIN, and PART
Alexander Barton [Sat, 24 May 2008 19:50:54 +0000 (21:50 +0200)]
Reset client idle time on NICK, JOIN, and PART

15 years agoRemove ListenIPv4/ListenIPv6 options.
Florian Westphal [Mon, 19 May 2008 12:34:48 +0000 (14:34 +0200)]
Remove ListenIPv4/ListenIPv6 options.

Use "Listen = list,of,addresses" instead.

15 years agomake Listen parameter a comma-seperated list of addresses.
Florian Westphal [Sun, 18 May 2008 22:12:41 +0000 (00:12 +0200)]
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.

15 years agoAdd option aliases -V (for --version) and -h (for --help).
Jari Aalto [Fri, 15 Feb 2008 19:29:24 +0000 (21:29 +0200)]
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>.

15 years agoAdd FAQ entry for 'Where is the log file'?
Florian Westphal [Thu, 15 May 2008 13:41:23 +0000 (15:41 +0200)]
Add FAQ entry for 'Where is the log file'?

15 years agoAdd tests for MOTD, VERSION, TIME, USERHOST
Brandon Beresini [Thu, 15 May 2008 06:39:05 +0000 (23:39 -0700)]
Add tests for MOTD, VERSION, TIME, USERHOST

The misc-test.e file is also somewhat reorganized and commented here.

Patch from Brandon Beresini, Bryan Caldwell and Dana Dahlstrom.

15 years agoUpdated list of authors (AUTHORS file)
Alexander Barton [Tue, 13 May 2008 14:21:14 +0000 (16:21 +0200)]
Updated list of authors (AUTHORS file)

15 years agoUpdate master development branch
Alexander Barton [Tue, 13 May 2008 14:12:15 +0000 (16:12 +0200)]
Update master development branch

- use "dev" instead of "HEAD" as "version number",
- update ChangeLog and NEWS to reflect the 0.12.0 release.

15 years agoMerge commit 'aad49bd260494878aed6795c7a897ad1d28c3082'
Alexander Barton [Tue, 13 May 2008 10:14:14 +0000 (12:14 +0200)]
Merge commit 'aad49bd260494878aed6795c7a897ad1d28c3082'

15 years agoThis patch implements a (maybe) compliant WHOWAS command.
Scott Perry [Mon, 12 May 2008 10:59:55 +0000 (12:59 +0200)]
This patch implements a (maybe) compliant WHOWAS command.

It is hard to test this in the test suite because we 1) shouldn't rely on
previous tests populating WHOWAS and 2) don't connect a user for more than 30
seconds.

Also makes WHOWAS return ERR_NONICKNAMEGIVEN_MSG as implied by RFC.

15 years agoIf bind() fails, also print ip address and not just the port number.
Florian Westphal [Mon, 12 May 2008 16:46:55 +0000 (18:46 +0200)]
If bind() fails, also print ip address and not just the port number.

15 years agoUpdate ngIRCd manual pages
Alexander Barton [Sun, 11 May 2008 15:08:46 +0000 (17:08 +0200)]
Update ngIRCd manual pages

- Update timestamp,
- enhance some phrasing,
- and fix "Passive" ([Server]) formatting.

15 years agoGIT: ignore symbolic links to tests in testsuite directory
Alexander Barton [Sun, 11 May 2008 13:20:46 +0000 (15:20 +0200)]
GIT: ignore symbolic links to tests in testsuite directory

Added symbolic links to new tests (invite-test, join-test, and kick-test)
to .gitignore file.

15 years agoFixes to who-test: accept "localhost.<domain>" as well as "localhost"
Alexander Barton [Sun, 11 May 2008 13:17:22 +0000 (15:17 +0200)]
Fixes to who-test: accept "localhost.<domain>" as well as "localhost"

Some operating systems, for example OpenBSD, use "localhost.<domain>"
instead of "localhost", so the "who-test" expecting "localhost" failed
on such systems.

15 years agong_ipaddr.h must include netinet/in.h.
Florian Westphal [Sat, 10 May 2008 19:49:51 +0000 (21:49 +0200)]
ng_ipaddr.h must include netinet/in.h.

compile on FreeBSD 5.4 failed with:
./../ipaddr/ng_ipaddr.h:34: error: field `sin4' has incomplete type

Reported and tested by Jefferson S Almeida.

15 years agoRemoved space after # so that Cygwin's version of expect recognizes comments.
Brandon Beresini [Fri, 9 May 2008 17:23:43 +0000 (10:23 -0700)]
Removed space after # so that Cygwin's version of expect recognizes comments.

15 years agoFix secret channel information leak
Ali Shemiran [Fri, 9 May 2008 19:47:31 +0000 (21:47 +0200)]
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.

15 years agoAdded Cygwin uid kludge. (verified working)
ashemira@ucsd.edu [Thu, 8 May 2008 05:38:00 +0000 (22:38 -0700)]
Added Cygwin uid kludge. (verified working)

15 years agoAnglified and improved comments in channel.c and channel.h
Eric Grunow [Thu, 8 May 2008 01:15:04 +0000 (03:15 +0200)]
Anglified and improved comments in channel.c and channel.h

[Dana Dahlstrom: repair tab/space conversion in patch]

15 years agoImplement IRC commands SERVICE, SERVLIST, and SQUERY as dummy functions bug74-SrvCmds
Alexander Barton [Mon, 5 May 2008 16:06:43 +0000 (18:06 +0200)]
Implement IRC commands SERVICE, SERVLIST, and SQUERY as dummy functions

SERVICE, SERVLIST, and SQUERY are required by RFC 2812 (it states in
section 3 that "all commands described in this section MUST be implemented
by any server for this protocol." -- So we implement them without (much)
actual functionality ...

15 years agoAdd invite-test.e to test suite.
Florian Westphal [Sun, 4 May 2008 21:34:36 +0000 (23:34 +0200)]
Add invite-test.e to test suite.

15 years agoTests for the INVITE command.
Dana Dahlstrom [Sun, 4 May 2008 03:02:12 +0000 (20:02 -0700)]
Tests for the INVITE command.

15 years agoInvite: prefix last argument with colon when necessary.
Dana Dahlstrom [Sun, 4 May 2008 21:20:05 +0000 (23:20 +0200)]
Invite: prefix last argument with colon when necessary.

15 years agotests for JOIN and various replies
Dana Dahlstrom [Sat, 3 May 2008 22:46:02 +0000 (00:46 +0200)]
tests for JOIN and various replies

Brandon Beresini sent me a patch yesterday adding tests for JOIN under
various circumstances, which I believe he worked on with Bryan Caldwell
and Ali Shemiran. I made a few modifications; the result is below.

15 years agoAllow KICK to handle comma-delimited lists (of channels, nicks).
Bryan Caldwell [Mon, 5 May 2008 14:04:48 +0000 (16:04 +0200)]
Allow KICK to handle comma-delimited lists (of channels, nicks).

includes test cases.

[fw@strlen.de:
- move code around to avoid duplication
- use const where possible
- integrate test case]

15 years agoInvite: Send RPL_AWAY to client sending the invite if target is away.
Florian Westphal [Sun, 4 May 2008 13:07:21 +0000 (15:07 +0200)]
Invite: Send RPL_AWAY to client sending the invite if target is away.

15 years agoFixes to who-test: accept any ident, escape some '*' flags.
Dana Dahlstrom [Sun, 4 May 2008 23:01:58 +0000 (16:01 -0700)]
Fixes to who-test: accept any ident, escape some '*' flags.

This prevents who-test.e from failing when ngircd
is performing ident lookups and an ident server is running.

15 years agoIRC_INVITE: coding style cleanup.
Florian Westphal [Sun, 4 May 2008 13:00:39 +0000 (15:00 +0200)]
IRC_INVITE: coding style cleanup.

15 years agoConstify some of Channel_Kick()s arguments.
Florian Westphal [Sat, 3 May 2008 19:41:32 +0000 (21:41 +0200)]
Constify some of Channel_Kick()s arguments.

15 years agoconstify Client_Search() argument.
Florian Westphal [Sat, 3 May 2008 19:20:02 +0000 (21:20 +0200)]
constify Client_Search() argument.

15 years agoAllow IRC ops to ignore channel limits when joining
Rolf Eike Beer [Sun, 4 May 2008 13:27:34 +0000 (15:27 +0200)]
Allow IRC ops to ignore channel limits when joining

Allow IRC ops to ignore any channel limit (bans, invite only etc.) when they
want to join a channel.

15 years agoHandle 1-character messages terminated with CR or LF correctly
Alexander Barton [Fri, 2 May 2008 00:14:15 +0000 (02:14 +0200)]
Handle 1-character messages terminated with CR or LF correctly

Code cleanup and fix for Bug #83, "ngIRCd chokes on 1-character messages" in
function Handle_Buffer(): the buffer is now correctly cleared when ngIRCd
receives 1-character messages terminated with either CR or LF (in violation
to RFC 2812, section 2.3 "Messages", 5th paragraph).

15 years agoOn AIX (for example) socklen_t is defined in sys/socket.h
Alexander Barton [Thu, 1 May 2008 18:25:39 +0000 (20:25 +0200)]
On AIX (for example) socklen_t is defined in sys/socket.h

On AIX and probably other systems socklen_t is defined in sys/socket.h,
so we have to include it here explicitly (tested by Florian).

15 years agoAlways enable modeless channels.
Florian Westphal [Thu, 1 May 2008 16:00:33 +0000 (18:00 +0200)]
Always enable modeless channels.

Modeless channels (+channels) are described in RFC 2811;
so my modifications to
530112b114ffa7d5352c0733790ddf90253f41f9
('Add support for modeless channels')
to disable +channels for --strict-rfc configurations
were wrong. This reverts those changes.

15 years agoPrevent GIT to complain about opless-channel-test link
Alexander Barton [Thu, 1 May 2008 14:31:13 +0000 (16:31 +0200)]
Prevent GIT to complain about opless-channel-test link

15 years agoAdd support for modeless channels
Ali Shemiran [Thu, 1 May 2008 13:19:31 +0000 (15:19 +0200)]
Add support for modeless channels

Add support for modeless channels (+channels).

[fw@strlen.de:
 - integrate test cases
 - don't support +channels when compiled with --strict-rfc
 - do not set +o mode for channel creator
 - force +nt mode when channel is created ]

15 years agoUpdated NEWS and ChangeLog for ngIRCd 0.12.0-pre2.
Alexander Barton [Tue, 29 Apr 2008 13:34:15 +0000 (15:34 +0200)]
Updated NEWS and ChangeLog for ngIRCd 0.12.0-pre2.

15 years ago--configtest: fix missing whitespace at "ConnectIPv4" option.
Alexander Barton [Tue, 29 Apr 2008 13:27:44 +0000 (15:27 +0200)]
--configtest: fix missing whitespace at "ConnectIPv4" option.

15 years ago--enable-ipv6: fix indentation in ./configure --help output.
Alexander Barton [Tue, 29 Apr 2008 13:26:20 +0000 (15:26 +0200)]
--enable-ipv6: fix indentation in ./configure --help output.

15 years agoMerge branch 'master' of git://git.breakpoint.cc/fw/ngircd-fw
Alexander Barton [Tue, 29 Apr 2008 13:15:28 +0000 (15:15 +0200)]
Merge branch 'master' of git://git.breakpoint.cc/fw/ngircd-fw

15 years agoTestsuite: remove erroneous ConfUID setting in config file.
Florian Westphal [Fri, 25 Apr 2008 22:38:57 +0000 (00:38 +0200)]
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...)

15 years agoGet rid of cvs-version.* and CVSDATE definition.
Alexander Barton [Sun, 20 Apr 2008 21:10:22 +0000 (23:10 +0200)]
Get rid of cvs-version.* and CVSDATE definition.
(cherry picked from commit b187fac244f4e14705f882ba7c43eef0238e2830)

15 years agoDocumentation: get rid of some more references to CVS, switch to GIT.
Alexander Barton [Sun, 20 Apr 2008 20:48:05 +0000 (22:48 +0200)]
Documentation: get rid of some more references to CVS, switch to GIT.
(cherry picked from commit 6e9389b86c906c53a7797b8ced87a19195e16333)

15 years agoReport ERR_NOTONCHANNEL when trying to part a channel one is not member of. bug81-PART
Alexander Barton [Thu, 24 Apr 2008 21:52:54 +0000 (23:52 +0200)]
Report ERR_NOTONCHANNEL when trying to part a channel one is not member of.

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).

15 years agoChannel_Part(): Code and comment cleanup.
Alexander Barton [Thu, 24 Apr 2008 21:47:33 +0000 (23:47 +0200)]
Channel_Part(): Code and comment cleanup.

15 years agoIRC_PART(): code and comment cleanup.
Alexander Barton [Thu, 24 Apr 2008 21:46:59 +0000 (23:46 +0200)]
IRC_PART(): code and comment cleanup.

16 years agoIPv6: Add config options to disabe ipv4/ipv6 support.
Florian Westphal [Sun, 20 Apr 2008 22:45:19 +0000 (00:45 +0200)]
IPv6: Add config options to disabe ipv4/ipv6 support.

This also enables ipv6-only setups.

16 years agoDon't include doc/CVS.txt in distribution archive, use doc/GIT.txt now!
Alexander Barton [Sun, 20 Apr 2008 14:46:49 +0000 (16:46 +0200)]
Don't include doc/CVS.txt in distribution archive, use doc/GIT.txt now!
(cherry picked from commit a8e0eb62e9dce81ca4a5c5911428561b90bf2c6e)

16 years agoSynchronized branch-0-12-x (ngIRCd 0.12.0-pre1) with master.
Alexander Barton [Sun, 20 Apr 2008 14:20:53 +0000 (16:20 +0200)]
Synchronized branch-0-12-x (ngIRCd 0.12.0-pre1) with master.
(cherry picked from commit 4ea29329674ff8ec6d772991a57c146b5d78d2ad)

16 years agoUpdated NEWS and ChangeLog for upcoming 0.12.0-pre1 release.
Alexander Barton [Sun, 20 Apr 2008 13:48:49 +0000 (15:48 +0200)]
Updated NEWS and ChangeLog for upcoming 0.12.0-pre1 release.

16 years agoUpdated copyright notice to read "2001-2008".
Alexander Barton [Sun, 20 Apr 2008 13:48:22 +0000 (15:48 +0200)]
Updated copyright notice to read "2001-2008".

16 years agoAdded make target "testsuite"
Alexander Barton [Sun, 20 Apr 2008 12:52:00 +0000 (14:52 +0200)]
Added make target "testsuite"

This make target runs the testsuite located in src/testsuite without running
alle the other tests that "make check" would run.

16 years agoFixed "xcode" make target (used to build ngIRCd with Mac OS X Xcode)
Alexander Barton [Sun, 20 Apr 2008 12:50:46 +0000 (14:50 +0200)]
Fixed "xcode" make target (used to build ngIRCd with Mac OS X Xcode)

16 years agoChannel_Mode: Remove duplicate code.
Florian Westphal [Sat, 19 Apr 2008 14:58:00 +0000 (16:58 +0200)]
Channel_Mode: Remove duplicate code.

Incidentially, this doesn't even change the
generated code...

16 years agoChannel_Mode: change order of if (set) and if (client) check.
Florian Westphal [Sat, 19 Apr 2008 14:51:42 +0000 (16:51 +0200)]
Channel_Mode: change order of if (set) and if (client) check.

16 years agoChannel_Mode: Re-indent switch.
Florian Westphal [Sat, 19 Apr 2008 14:45:31 +0000 (16:45 +0200)]
Channel_Mode: Re-indent switch.

No functional changes were made.