Alexey Sokolov
4596d97502
Remove "-" between "ZNC" and version number.
...
ZNC 1.6.0 looks better than ZNC - 1.6.0, IMHO
2015-04-06 20:41:57 +01:00
Eli Young
53254173b1
Write config file when channel is removed ( #932 )
2015-03-31 17:57:30 -07:00
J-P Nurmi
4935ef4d26
Fix compilation warning when HAVE_LIBSSL is not defined
...
Building core object Socket...
src/Socket.cpp:30:16: warning: unused function 'ZNC_DefaultCipher' [-Wunused-function]
static CString ZNC_DefaultCipher() {
^
1 warning generated.
2015-02-25 09:36:56 +01:00
J-P Nurmi
7345a6ee3a
Fix CIRCNetwork::FindChans() and FindQueries() to be case-insensitive
...
The playback module failed to clear a buffer, because it tried to
clear "NickServ" whereas ZNC had internally stored it has "nickserv".
2015-02-19 08:45:58 +01:00
Uli Schlachter
5f9ad5cc87
SSLVerifyHost: Make some functions static
...
These functions shouldn't be visible outside of this file. This was caught by
-Werror=missing-declarations.
Signed-off-by: Uli Schlachter <psychon@znc.in >
2015-02-19 08:39:22 +01:00
Uli Schlachter
fd34f84bfd
~CThreadPool(): Handle spurious wakeups
...
From pthread_cond_wait()'s man page:
When using condition variables there is always a boolean predicate involving
shared variables associated with each condition wait that is true if the
thread should proceed. Spurious wakeups from the pthread_cond_wait() or
pthread_cond_timedwait() functions may occur. Since the return from
pthread_cond_wait() or pthread_cond_timedwait() does not imply anything about
the value of this predicate, the predicate should be re-evaluated upon such
return.
Fix ~CThreadPool() to account for this possibility.
Signed-off-by: Uli Schlachter <psychon@znc.in >
2015-02-19 08:38:28 +01:00
J-P Nurmi
7680421053
Fix #840 - channel hopping/cycling
...
A regression caused by aed1d61 .
2015-02-02 10:41:13 +01:00
Alexey Sokolov
d4a36aaa93
Fix crash in znc --version, caused by latest commits.
...
Fix #838
2015-02-01 15:36:31 +00:00
Alexey Sokolov
ff88f24494
Merge branch 'version'
2015-02-01 09:23:41 +00:00
Alexey Sokolov
cf6ec5646b
Add ZNC to CTCP VERSION reply even if client is connected.
...
Previously, it replied to CTCP VERSION, but only if no client is connected.
See https://github.com/znc/znc/issues/820#issuecomment-70506203
2015-01-31 10:01:27 +00:00
Alexey Sokolov
f9a4507669
Add a global setting whether to show ZNC version or not
...
Close #820
Close #821
2015-01-30 23:01:06 +00:00
Alexey Sokolov
cbbd18cc6b
Merge pull request #823 from Zarthus/pass-patch
...
Tell user to use PASS <username>/<network> instead of just the username.
2015-01-26 23:13:16 +00:00
OGAWA Hirofumi
b8dcb5f706
Don't polling to wait the exit of threads in CThreadPool destructor
...
All values are protected by m_mutex. So we don't need the polling to
wait m_num_threads==0 with wakeups, instead simply use CConditionVariable.
2015-01-25 21:55:42 +09:00
Jos
26e466c677
More detailed instructions on how to connect to ZNC when not yet logged in.
...
The message now mentions you should configure your client to automatically log you in, and also lets you know how to connect to a specific network.
2015-01-25 10:25:13 +01:00
Jos
35b5525cc1
Tell user to use PASS <username>/<network> instead of just the username.
...
In versions prior to 1.0, ZNC did not allow multiple networks per user. The string telling users to connect has never been changed after ZNC 1.0, and this fixes just that.
2015-01-24 11:40:51 +01:00
Alexey Sokolov
94f2b4dc97
Don't expose ZNC version in CTCP VERSION.
...
Thanks to Mikaela for finding this.
See #818
2015-01-18 08:15:34 +00:00
Alexey Sokolov
38353a67d7
Remove message which should be removed before release
2015-01-18 00:00:15 +00:00
J-P Nurmi
045f7752cb
savebuff: save & load query buffers - fixes #802
...
The old internal storage format was:
::__:SAVEBUFF:__::<buffer lines>
The new storage format for channels:
::__:CHANBUFF:__::<buffer name>
<buffer lines>
The new storage format for queries:
::__:QUERYBUFF:__::<buffer name>
<buffer lines>
See #802 for details why the storage format had to be changed. Reading
the old storage format is still supported so old saved buffers load as
appropriate.
2015-01-16 21:13:44 +01:00
Alexey Sokolov
600f91f128
Fix implicit context of OnSendTo* hooks
...
Thanks for markus-j for reporting it
2015-01-11 17:08:00 +00:00
Alexey Sokolov
9166e6ed40
Move Csocket to git submodule
2015-01-03 12:45:12 +00:00
Edoardo Spadolini
507f9b3392
Follow SSL Cipher Server Preference
2015-01-02 23:40:15 +01:00
Edoardo Spadolini
cac9da4951
Update Csocket to 0119a006bdfb6223a1a86d48b02efee87d11b721
2015-01-02 23:36:36 +01:00
Falk Seidel
2e29d49a53
Welcome to 2015
2014-12-31 11:28:38 +01:00
Alexey Sokolov
a0ec20b110
Fix HTTP basic auth.
...
It looks like it was broken since we implemented cookies...
2014-12-30 21:35:39 +00:00
Alexey Sokolov
d56621f9f6
Fix modperl startup
2014-12-25 16:36:55 +00:00
Mikaela Suomalainen
963ecf6753
src/Utils.cpp: don't lie to --makepem
...
I removed C, ST, L and O as certificate would be fine with just CN too
and the other variables are get from environment correctly.
2014-12-23 11:31:27 +02:00
Alexey Sokolov
60367fb2bf
Provide DH parameters in --makepem
2014-12-23 09:02:22 +00:00
Alexey Sokolov
5c72c8232f
Show fingerprints with colons
2014-12-23 00:58:59 +00:00
Alexey Sokolov
72ca970731
Make default ciphers a bit better
2014-12-23 00:57:59 +00:00
Alexey Sokolov
012bb6e134
Make self-signed cert with SHA-256 in --makepem
2014-12-23 00:55:39 +00:00
Alexey Sokolov
2aa6c7e1d9
Merge pull request #775 from DarthGandalf/table
...
Wrap lines in CTable
2014-12-22 15:18:15 +00:00
Alexey Sokolov
79d33925c4
Update Csocket to f3267e4cb21ba5b83c15da75f52706253817ddab
...
* Fix SSL crash. Thanks to kerio for reporting it.
2014-12-22 15:08:50 +00:00
Alexey Sokolov
8930fc4d7a
Don't break IRC control characters in some encodings
...
Fix #577
2014-12-21 17:09:59 +00:00
Alexey Sokolov
bd9450b99e
Webadmin: Add GUI for character encoding
2014-12-21 17:08:41 +00:00
Alexey Sokolov
86e5ca3fd3
Update Csocket to 7c9c6ef676818457a952c2bda478ce7e27a928bf
...
* Add encoding mode which reads UTF-8 and something else, but sends UTF-8
* Expose encoding conversion error callbacks to subclasses
2014-12-21 17:07:29 +00:00
James Taylor
6720eec669
Update Csocket to jimloco/Csocket@09b6430dba
...
Fixes build failures under musl, an alternative libc, due to
incompatibilities with GLIBC specific code. Also fixes Issue #776
2014-12-18 11:31:32 +00:00
Alexey Sokolov
606ed8312d
Wrap lines in CTable
...
See #743
2014-12-17 15:03:39 +00:00
Alexey Sokolov
2ee19fd415
Make wording of JumpNetwork's help a bit clealer
2014-12-16 21:59:30 +00:00
Alexey Sokolov
4a5fddce7e
Fix typo in comment
2014-12-15 15:52:51 +00:00
Alexey Sokolov
04148b970b
Use random DNS result instead of choosing the same every time.
...
Fix #133
2014-12-15 14:25:03 +00:00
Alexey Sokolov
7fc918c2e6
Update Csocket to 60a71941eac8e4b5728abd82deb95db4668345be
...
It fixes crash on SSL renegotiation if Csock object was swapped with
another one
2014-12-14 16:40:46 +00:00
Alexey Sokolov
8bc433a576
Convert fingerprint to lower case when adding it.
2014-12-14 10:33:57 +00:00
Alexey Sokolov
60ec923d1f
Fix calculation of SSL fingerprints
2014-12-14 09:58:00 +00:00
J-P Nurmi
a32413c213
Update Csocket to 3cc03c2 ( fixes #765 )
...
> Test that SSL_OP_NO_COMPRESSION is defined
2014-12-10 18:09:30 +01:00
Alexey Sokolov
c8f49e1da0
Merge pull request #754 from jpnurmi/ready
...
Add CClient::IsPlaybackActive()
2014-12-04 21:56:13 +00:00
Alexey Sokolov
e535e62390
Fix connection of SSL clients to ZNC
2014-12-02 21:42:28 +00:00
Alexey Sokolov
6d7458c678
Merge branch 'ssl'
2014-12-02 21:24:49 +00:00
J-P Nurmi
efe1e1ee91
Add CClient::IsPlaybackActive()
...
To let modules know whether a client is currently in playback mode.
The clientbuffer module (#343 ) wants to update "last seen message"
timestamps in OnSendToClient() but it must avoid doing that while
in playback mode.
2014-12-01 11:47:24 +01:00
Alexey Sokolov
4442af724f
Validate TLS certificate of IRC server.
...
Fix #156
2014-11-29 14:25:15 +00:00
Alexey Sokolov
73d71cc388
Merge pull request #756 from jpnurmi/timestamp
...
Pass timestamp to playline hooks
2014-11-29 11:27:25 +00:00