Branch: refs/heads/master
Home: https://github.com/ngircd/ngircd
Commit: 34bdb0d98afada4af4e723acabdd7c829d30ec99
https://github.com/ngircd/ngircd/commit/34bdb0d98afada4af4e723acabdd7c829d3…
Author: Alexander Barton <alex(a)barton.de>
Date: 2018-02-09 (Fri, 09 Feb 2018)
Changed paths:
M AUTHORS
M ChangeLog
M INSTALL
M NEWS
M README
M doc/HowToRelease.txt
M man/ngircd.8.tmpl
M man/ngircd.conf.5.tmpl
M src/ngircd/ngircd.c
Log Message:
-----------
2018!
Branch: refs/heads/master
Home: https://github.com/ngircd/ngircd
Commit: 7207bef418c655107d3076b20dd797418ad82cd7
https://github.com/ngircd/ngircd/commit/7207bef418c655107d3076b20dd797418ad…
Author: Alexander Barton <alex(a)barton.de>
Date: 2018-01-29 (Mon, 29 Jan 2018)
Changed paths:
M src/ngircd/resolve.c
Log Message:
-----------
Fix Get_Error() usage, take II
This should fix the following compiler warning:
resolve.c:113:1: warning: ‘Get_Error’ defined but not used
[-Wunused-function]
Which can happen, because the logic of commit 543f44bf isn't sufficient:
Get_Error() is only used when neither HAVE_WORKING_GETADDRINFO nor
HAVE_GETNAMEINFO are set ...
Enhances 543f44bf.
Closes #241.
Commit: d9f81ac66942000861d46cd33708585a729b1207
https://github.com/ngircd/ngircd/commit/d9f81ac66942000861d46cd33708585a729…
Author: Alexander Barton <alex(a)barton.de>
Date: 2018-01-29 (Mon, 29 Jan 2018)
Changed paths:
M src/ngircd/irc.c
Log Message:
-----------
Fix compiler warning in Option_String()
When compiling ngIRCd without support for SSL and without support for
ZLIB, gcc outputs the following warning:
irc.c:493:9: warning: variable ‘options’ set but not used
[-Wunused-but-set-variable]
Fix it by providing a dummy function in this case.
Commit: 7ed22d0b22dc1ed624c3931e1cff9e21f4156bd9
https://github.com/ngircd/ngircd/commit/7ed22d0b22dc1ed624c3931e1cff9e21f41…
Author: Alexander Barton <alex(a)barton.de>
Date: 2018-01-29 (Mon, 29 Jan 2018)
Changed paths:
M src/ngircd/resolve.c
Log Message:
-----------
Fix compiler warning in ForwardLookup()
When compiling without "working getaddrinfo()", the "af" parameter of
ForwardLookup() is unused by that function. Mark it as such!
This prevents the following compiler warning:
resolve.c:235:56: warning: unused parameter ‘af’
[-Wunused-parameter]
Compare: https://github.com/ngircd/ngircd/compare/619a3f3ff28e...7ed22d0b22dc
Branch: refs/heads/master
Home: https://github.com/ngircd/ngircd
Commit: 05640f9285e28ce64180833d39f7ceda88d3915a
https://github.com/ngircd/ngircd/commit/05640f9285e28ce64180833d39f7ceda88d…
Author: Alexander Barton <alex(a)barton.de>
Date: 2017-09-30 (Sat, 30 Sep 2017)
Changed paths:
M src/ngircd/irc.c
Log Message:
-----------
Allow IRC Ops and remote servers to KILL service clients (#242)
In the end, service clients behave like regular users, therefore IRC
operators and servers should be able to KILL them: for example to
resolve nick collisions.
This is related to #238.
Branch: refs/heads/AllowServiceKILL
Home: https://github.com/ngircd/ngircd
Commit: 8416e469cd9f55ae2d7b72ef2fb0a9bf0cc603d9
https://github.com/ngircd/ngircd/commit/8416e469cd9f55ae2d7b72ef2fb0a9bf0cc…
Author: Alexander Barton <alex(a)barton.de>
Date: 2017-09-26 (Tue, 26 Sep 2017)
Changed paths:
M src/ngircd/irc.c
Log Message:
-----------
Allow IRC Ops and remote servers to KILL service clients
In the end, service clients behave like regular users, therefore IRC
operators and servers should be able to KILL them: for example to
resolve nick collisions.
This is related to #238.
Branch: refs/heads/master
Home: https://github.com/ngircd/ngircd
Commit: e009fc87d54602cc2a4d9b60257f40bad14fc081
https://github.com/ngircd/ngircd/commit/e009fc87d54602cc2a4d9b60257f40bad14…
Author: James Lu <james(a)overdrivenetworks.com>
Date: 2017-09-26 (Tue, 26 Sep 2017)
Changed paths:
M src/ngircd/irc.c
Log Message:
-----------
Don't forward KILLs to other servers if they've been blocked locally
This prevents clients from killing IRC services, for example.
Closes #238.
Closes #239.