Keith Buck
8db50c03e6
BAN: Don't schedule check_klines for 0 seconds in the future.
...
When receiving bans from a bursting server, if kline_delay is set to 0
(the default), rb_event_addonce will be called to schedule an event for
0 seconds in the future. While this works fine for the fallback
rb_event_run function, the epoll implementation ends up scheduling a
timerfd for the event in the past, which is then never executed.
While fixing this, I also made rb_event_add and rb_event_addonce reject
attempts to add events scheduled for 0 seconds in the future; they're
instead rewritten to run 1 second in the future.
2014-08-17 09:06:01 +00:00
Jilles Tjoelker
1c38b9def0
Update 3.5 NEWS.
2014-08-15 22:38:56 +02:00
Jilles Tjoelker
b733b9faf4
SJOIN: Fix crash when both mode parameter and UID list are missing.
...
Closes #63
2014-08-15 17:10:24 +02:00
Jilles Tjoelker
dfbf41a0ab
conf: Make channel::channel_target_change option actually work.
...
Channel target change was forcibly enabled.
2014-08-08 11:57:09 +02:00
Jilles Tjoelker
3bfac098f7
extensions/extb_channel: Allow the channel itself as target even if +s/+p.
2014-07-19 20:14:14 +02:00
Jilles Tjoelker
83aa910fb9
extensions/chm_sslonly: Use some 4xx numeric for the join failure.
2014-07-19 20:14:14 +02:00
Rylee Fowler
c1ca217a03
Merge pull request #64 from maxanton/fix_path_to_ssl_cert
...
example configs: change ssl_cert to etc/ssl.pem
2014-07-13 16:31:04 -04:00
Max Teufel
b3c4dfd7f2
example configs: change ssl_cert to etc/ssl.pem
...
The genssl script writes to etc/ssl.pem by default.
2014-07-13 18:12:54 +02:00
Jilles Tjoelker
a7fa7fff0d
smoketest: Remove race conditions causing occasional test failures.
2014-06-12 23:43:05 +02:00
Jilles Tjoelker
f6b62c59bb
Chase change from example.conf to ircd.conf.example in various places.
2014-06-12 23:43:05 +02:00
Jilles Tjoelker
1db8e00714
configure: Rerun autoconf.
2014-06-05 22:12:29 +02:00
Jilles Tjoelker
6573fa4c74
configure: Restore libratbox build.
...
This fixes building from scratch.
2014-06-05 22:12:19 +02:00
Jilles Tjoelker
74273d8b80
Merge branch 'master+sharedsqlite' of https://github.com/lstarnes1024/charybdis
2014-06-03 22:40:32 +02:00
Lee Starnes
a5471f2483
configure: use pkg-config for sqlite
2014-06-01 15:50:47 -04:00
Lee Starnes
f286b102d8
aclocal.m4: rerun aclocal
2014-06-01 15:50:47 -04:00
Lee Starnes
83c9439aa3
m4/pkg.m4: add pkg-config-0.24 macros
2014-06-01 15:50:47 -04:00
Lee Starnes
bd4ebd6b18
configure: move local autoconf macros to m4/charybdis.m4
2014-06-01 15:50:38 -04:00
Lee Starnes
cf1001a739
configure: fix linking with shared sqlite on *BSD
2014-05-31 22:56:12 -04:00
Lee Starnes
a6ef3156ec
configure: use --with-shared-sqlite instead of --enable-shared-sqlite
2014-05-31 21:14:09 -04:00
Lee Starnes
74ab6be094
bandb: make Makefile work with BSD make again
2014-05-29 17:53:43 -04:00
Jilles Tjoelker
67b7840a5d
ircd_parser: Fix inconsistent declaration of yyerror().
2014-05-29 23:23:50 +02:00
Lee Starnes
497e30a0bb
configure: add --enable-shared-sqlite option
...
When --enable-shared-sqlite is used, charybdis will be compiled with a shared
sqlite library if it is available.
2014-05-29 13:11:29 -04:00
Jilles Tjoelker
0f8db0552e
channel: Remove write-only field.
2014-05-29 17:41:35 +02:00
Jilles Tjoelker
51452a370b
channel: Stop pretending to support per-mode server capabilities.
...
After a change for dynamic server capabilities, the code to send out mode
changes was changed to use the capabilities belonging to the last mode
being sent out. This does not make sense; therefore, just use no
capabilities and remove supporting infrastructure.
2014-05-29 17:40:16 +02:00
Jilles Tjoelker
d0c2fc8266
server: Require EX and IE capabilities (+e and +I cmodes).
...
The code to send each channel mode only to servers supporting it was
broken a while ago and was not very useful anyway. Therefore, require
all connecting servers to support all standard channel modes.
2014-05-29 16:24:42 +02:00
Jilles Tjoelker
72ae8a1f7b
Merge branch 'patch-1' of https://github.com/auscompgeek/charybdis
2014-05-29 15:42:47 +02:00
Jilles Tjoelker
69f4561b39
Merge branch 'master+umodes' of https://github.com/Adam-/charybdis
2014-05-19 23:37:20 +02:00
Adam
9744d53ec9
Fix buffer overflow in introduce_client and burst_TS6
...
If the client being introduced has more than 10 user modes send_umode()
will overflow ubuf
2014-05-13 19:33:41 -04:00
Mantas Mikulėnas
ad4b76b417
help: Update indexes
...
`make index` (add PRIVS for opers, CHANTRACE for users)
2014-05-10 15:10:36 +03:00
Mantas Mikulėnas
457f6802e0
help: Add MONITOR to the user symlinks
...
Apparently the overrides are done at `make install` time, okay.
2014-05-10 15:04:29 +03:00
Mantas Mikulėnas
c72f15bcf5
m_version: remove spaces from version string
...
"to make it machine parseable again", as in ircd-seven commit 03b2176b88a1.
2014-05-06 16:28:23 +03:00
Mantas Mikulėnas
0f4ed4058d
m_version: display charybdis version in /version
...
Otherwise it just crashes when /version is used.
Closes : #60
2014-05-06 16:27:03 +03:00
Jilles Tjoelker
bf77c3a1ef
info: Change N-line to connect block.
2014-04-27 15:33:09 +02:00
auscompgeek
bd96349c86
strip_colour: Strip '\x0F' (^O, formatting off)
...
Reported by ssbr on freenode:
chmode +c doesn't strip ^O, which turns off all previous formatting.
This can cause clients that internally use mIRC formatting to render messages weirdly,
e.g. highlighted messages in HexChat: <https://i.imgur.com/eDX8Aif.png >.
2014-04-17 13:12:11 +10:00
Jilles Tjoelker
a0998bcdd7
example confs: Remove AHBL blacklists, which are no longer available.
2014-04-06 12:34:03 +02:00
Alex Iadicicco
011e38be79
mkpasswd: Prompt for password twice
2014-04-04 16:46:44 -07:00
Douglas Freed
cea0689e80
Fix const qualifier on raw_mask
...
Fixes compilation warning about losing const qualifier in assignment to
non-const variable
(cherry picked from commit 6d9c3f50944e1da3bf3a1be6454f85d6d6f7ab37)
2014-03-09 19:13:25 +01:00
Jilles Tjoelker
0c5e50f430
Fix format string type mismatch in src/capability.c.
...
The type 'long' was correct on most machines but not according to the C
standard and Windows 64-bit.
2014-03-09 19:11:54 +01:00
Jilles Tjoelker
e3cb855407
Restore trailing whitespace in sqlite3 amalgamation.
...
Stripping the whitespace from the upstream-maintained sqlite3 code just
causes merge conflicts with no benefit.
2014-03-09 17:54:26 +01:00
Jilles Tjoelker
5457b10278
Fix fd leak if /dev/urandom can be opened but not read.
2014-03-09 14:54:45 +01:00
Jilles Tjoelker
72cc5a995f
Add first cut at 3.5.0 NEWS. [ci skip]
2014-03-07 23:07:02 +01:00
Jilles Tjoelker
0894d18b87
blacklist: Make the snote more like the +c one.
2014-03-07 21:55:43 +01:00
William Pitcock
9e7c930672
Merge pull request #53 from ShadowNinja/clarify_U+R
...
Clarify UMODE +R help text
2014-03-06 09:59:37 -06:00
Keith Buck
48e409767f
Add DNSBL snotes for snomask +r.
2014-03-05 08:12:22 +00:00
Jilles Tjoelker
0455e7a927
Remove snotes on +r about GET/PUT/POST commands.
...
The server notice "HTTP Proxy disconnected: [<user>@<host>]" is
confusing and not particularly useful.
2014-03-04 23:02:40 +01:00
Keith Buck
55abcbb20a
Remove trailing whitespace from all .c and .h files.
...
3134 bytes were removed.
2014-03-03 04:25:47 +00:00
Keith Buck
00533129dc
s_conf: Don't leak log file paths when loading default conf
...
This change prevents the log file paths from being leaked when
rehashing. Additionally, fname_killlog was added to two places where it
was previously forgotten.
2014-03-03 04:12:07 +00:00
Keith Buck
010c4fbdc5
s_conf: Don't leak strings when loading default conf
...
This change prevents conf strings from being leaked when resetting the
conf to default prior to a rehash. Additionally, some default strings
are now rb_strdup'd into the ConfigFileEntry structure after loading the
conf so that they aren't allocated and then immediately freed by the
conf loading process.
2014-03-03 03:58:40 +00:00
Keith Buck
9e26f0008b
libratbox openssl: Don't leak EC_KEY structures.
2014-03-03 01:43:33 +00:00
Keith Buck
023c36ae22
newconf.c: Remove end-of-line whitespace.
2014-03-03 01:43:33 +00:00