Alexander Barton
298158501d
IRC_SERVER(): Code cleanup
2013-08-07 00:13:08 +02:00
Alexander Barton
904c8a4375
Introduce new function IRC_WriteErrClient()
...
This function is used to send "error messages", including numerics,
back to clients and to automatically enforce a 2 second penalty. With
this patch, all error results enforces a delay for the client.
All callers of IRC_WriteStrClient(ERR_xxx) have been converted.
Please note that this patch prolongs the time "make check" needs
to complete its tests, because of lots of new enforced penalties ...
2013-08-07 00:10:50 +02:00
Alexander Barton
b86e33ef49
irc-macros.h: Update copyright, don't forget contributors!
2013-08-06 23:36:16 +02:00
Alexander Barton
0a3d8d60d3
irc-write.c: Clean up code and add more documentation comments
2013-08-06 23:21:48 +02:00
Alexander Barton
08d49a8fa0
Fix return code of some IRC_WriteXXX() functions
...
These functions usually write to more than one target, and therefore
can't return value indicating success or failure in a sane way. And, even
more omportant, these functions should send to as much as possible clients
and not stop at the first client which isn't reachable any more!
2013-08-06 23:18:57 +02:00
Alexander Barton
8f5cbe51a7
Streamline punctuation of log messages
...
See commit d38d153f
for details.
2013-08-06 21:34:32 +02:00
Alexander Barton
bd0de15d31
Update NEWS and ChangeLog files
2013-08-06 21:14:56 +02:00
Federico G. Schwindt
fcdb5cf8dd
More spelling corrections
2013-08-05 11:06:52 +01:00
Federico G. Schwindt
7db8481500
Inline who_flags_status
2013-08-05 11:05:12 +01:00
Federico G. Schwindt
74514b8c23
Convert more code to use Channel_HasMode
2013-08-04 21:16:03 +01:00
Federico G. Schwindt
c74115f25c
Simplify mode checking on channels and users within a channel
...
Add Channel_HasMode() and Channel_UserHasMode() and use it where
possible.
2013-08-04 18:28:04 +01:00
Federico G. Schwindt
672a167963
Use Client_HasMode and Client_HasFlag where appropriate
2013-08-04 17:25:24 +01:00
Alexander Barton
139f5961a0
Merge branch 'bug152-AllowedChannelTypes'
...
* bug152-AllowedChannelTypes:
Implement new configuration option "AllowedChannelTypes"
Introduce "CHANTYPES" #define
2013-08-04 14:11:12 +02:00
Alexander Barton
5258fb7f7c
Implement new configuration option "AllowedChannelTypes"
...
The new configuration variable "AllowedChannelTypes" lists all allowed
channel types (channel prefixes) for newly created channels on the local
server. By default, all supported channel types are allowed.
If set to the empty string, local clients can't create new channels at
all, which equals the old "PredefChannelsOnly = yes" setting.
This patch deprecates the "PredefChannelsOnly" variable, too, but it is
still supported and translated to the apropriate "AllowedChannelTypes"
setting. When "PredefChannelsOnly" is processed, a warning message is
logged.
Closes bug #152 .
2013-08-04 14:10:12 +02:00
Federico G. Schwindt
15dfdaac82
More spelling fixes
...
Remove superflous comments, mostly in German. Fix spelling and
use american variants for consistency.
2013-08-04 12:45:11 +01:00
Federico G. Schwindt
bb8d207efa
Change cloaked hostname to be malloc'd on demand
...
This shaves a few bytes when cloaked hostnames are not used and
restricts the cloakhost announcement iif there is something to
send.
2013-08-04 10:15:11 +01:00
Federico G. Schwindt
e03d8eb728
Add Client_HasFlag() to check if a client has certain flag
2013-08-04 04:00:34 +01:00
Federico G. Schwindt
a95d3e05e7
Fix spelling
2013-08-04 03:15:27 +01:00
Federico G. Schwindt
646a97de5f
Rename XXX_Fingerprint to XXX_CertFp
2013-08-04 03:14:27 +01:00
Federico G. Schwindt
8e60fac73b
Improved client announcement
...
Move Announce_User() to client.c and rename it to Client_Announce().
Use this in cb_introduceClient() instead of duplicating the code.
This fix the certificate fingerprint announcement for new clients.
Also ensure the certificate fingerprint is only announced if the
client supports it (`M' flag).
2013-08-04 00:22:38 +01:00
Alexander Barton
5e775a3fae
Introduce "CHANTYPES" #define
...
This #define lists all the prefix characters of all supported channel
types, this is "#&+" at the moment.
2013-08-04 00:35:08 +02:00
Alexander Barton
69ce65bacb
Merge remote-tracking branch 'fgsch/certfp'
...
* fgsch/certfp:
Simplify MOTD handling
Add certificate fingerprint support
2013-08-03 00:29:12 +02:00
Federico G. Schwindt
bf8e03c466
Simplify MOTD handling
...
Merge Show_MOTD_Start, Show_MOTD_Sendline and Show_MOTD_End into
IRC_Show_MOTD.
2013-08-02 23:24:18 +01:00
Federico G. Schwindt
1254d315b9
Add certificate fingerprint support
2013-08-02 23:24:06 +01:00
Alexander Barton
4ec19c0332
Update irc-server.c to use irc-macros.h
...
And add some comments :-)
2013-08-03 00:00:47 +02:00
Alexander Barton
61a6691b36
Commands.txt: Update more descriptions
...
Update description of "CHANINFO", "METADATA", "NJOIN", "SERVER", "SQUIT",
"GET", and "POST".
2013-08-02 23:59:32 +02:00
Alexander Barton
78c8212280
Update irc-oper.c to use irc-macros.h
2013-08-02 23:27:11 +02:00
Alexander Barton
adc8d4f6c8
Commands.txt: Update more descriptions
...
Update description of "CONNECT", "DIE", "DISCONNECT", "GLINE", "KILL",
"KLINE", "OPER", "REHASH", "RESTART" and "WALLOPS".
2013-08-02 23:25:23 +02:00
Alexander Barton
24183b1a91
Commands.txt: Fix <target> description of TRACE command
2013-08-02 02:16:21 +02:00
Alexander Barton
888c524683
Update irc-mode.c to use irc-macros.h
...
This includes code cleanups and more comments, too.
2013-08-02 01:48:35 +02:00
Alexander Barton
ae0af66d50
Update irc-channel.c to use irc-macros.h
...
This includes code cleanups, too :-)
2013-08-02 01:46:57 +02:00
Alexander Barton
a8ecde2553
Commands.txt: Update more descriptions
...
Update descriptions of "AWAY", "JOIN", "LIST", "MODE", "PART",
"TOPC", and "TRACE".
2013-08-02 01:45:02 +02:00
Alexander Barton
fef10f590b
Commands.txt: Streamline references to IRC+ protocol
2013-08-02 01:42:40 +02:00
Alexander Barton
771e539c18
Show IRC Operator name when logging a successful OPER command
2013-08-01 00:24:10 +02:00
Alexander Barton
313881d0c1
Add penalty times in error paths of generic IRC helper macros
...
Add a 2 second penalty time when the number of parameters is invalid.
2013-07-30 22:08:04 +02:00
Alexander Barton
3bd973037a
Add more penalty times in error paths
...
This patch changes the handlers of the "PASS", "NICK", "USER",
and "SERVICE" commands to enforce a 2 second penalty when an error
like "need more/other parameters" occurs.
More functions should follow, I think ...
2013-07-30 22:05:00 +02:00
Alexander Barton
f494023b0d
Update irc-login.c to use irc-macros.h
...
This includes code cleanups, too :-)
2013-07-30 21:18:42 +02:00
Alexander Barton
659d126460
Commands.txt: Update more descriptions
...
Update descriptions of "NICK", "PASS", "PING", "PONG", "QUIT", "USER",
"WEBIRC", "SERVICE", and "SVSNICK".
2013-07-30 21:12:24 +02:00
Alexander Barton
76dcb08266
Commands.txt: Update description of "PRIVMSG", "NOTICE", and "SQUERY"
2013-07-19 18:16:12 +02:00
Alexander Barton
4cb2edf020
Add "compile" to .gitignore file
2013-07-18 23:43:12 +02:00
Alexander Barton
720eb874a9
Commands.txt: Update description of the "ERROR" command
2013-07-18 23:42:00 +02:00
Alexander Barton
fa15eb1698
Update irc.c to use irc-macros.h
...
This includes code cleanups and better documentation for some
functions, too.
2013-07-18 23:35:33 +02:00
Alexander Barton
b54e664a63
Merge pull request #4 from fgsch/master
...
Changes for ngircd 21.
2013-07-18 13:38:19 -07:00
Federico G. Schwindt
7adc4b8e99
Handle services in IRC_WHOIS_SendReply()
...
If the target is a service, advertise it as such and ignore operator mode.
2013-07-18 19:52:17 +01:00
Federico G. Schwindt
5021977bb1
Fix spelling
2013-07-18 17:51:02 +01:00
Alexander Barton
5115756b79
Slightly update ngircd.8 manual page
2013-07-17 14:36:54 +02:00
Alexander Barton
f6ac0d89ae
Travis-CI: Enable OpenSSL and libiconv support
2013-06-04 12:46:44 +02:00
Alexander Barton
11240376a5
Updated NEWS and ChangeLog files
2013-06-04 11:42:25 +02:00
Alexander Barton
e377f4ea47
Enhance Travis-CI configuration file
...
It now configures the sandbox to build ngIRCd with IPv6, IDENT, PAM,
TCP-Wrappers, and zlib support. And it installs expect(1) and telnet(1)
for the test suite.
2013-06-04 11:36:08 +02:00
Alexander Barton
9d3800fd15
Merge pull request #3 from Cofyc/master
...
irc-info.c: some commands use LINE_LEN as command buffer len
2013-05-30 08:55:48 -07:00