Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-06-10 | Return the newly created Membership object from Channel::ForceJoin() | Attila Molnar | |
2014-06-10 | Add channel TS to server-to-server INVITE to detect and drop unauthorized ↵ | Attila Molnar | |
invites The syntax of the server-to-server INVITE command changes from :<source> INVITE <target> <channel> [<expire>] to :<source> INVITE <target> <channel> <chants> [<expire>] | |||
2014-06-10 | m_spanningtree Allow callers of InsertCurrentChannelTS() to customize positions | Attila Molnar | |
2014-06-10 | cmd_kick Assign a value to the kick reason string more reasonably | Attila Molnar | |
2014-06-10 | Use the iterator version of Channel::KickUser() in a few places | Attila Molnar | |
2014-06-10 | Change Channel::KickUser() to accept an iterator, add overload that accepts ↵ | Attila Molnar | |
a User Remove srcmemb parameter | |||
2014-06-10 | Move pre-kick checks from core to cmd_kick (core_channel) | Attila Molnar | |
2014-06-09 | m_remove Make the protected rank configurable instead of hardcoding it to 50000 | Attila Molnar | |
Change type of ulevel and tlevel to unsigned int | |||
2014-06-09 | m_remove Recognize /REMOVE <chan> <nick> | Attila Molnar | |
The old syntax is now deprecated Fixes issue #860 reported by @Shawn-Smith | |||
2014-06-09 | m_remove Manually forward all REMOVE messages, turn FPART into REMOVE | Attila Molnar | |
2014-06-09 | Use std::find() in ParseStack::ParseFile() | Attila Molnar | |
2014-06-09 | Deduplicate ParseStack::ParseFile() and ParseExec() | Attila Molnar | |
2014-06-07 | m_ssl_openssl Remove unused MAX_DESCRIPTORS define | Attila Molnar | |
2014-06-07 | Change the number reported by SocketEngine::GetMaxFds() to be informal | Attila Molnar | |
Do not exit if we can't determine it | |||
2014-06-07 | socketengine_epoll Pass a dummy value to epoll_create() that does not depend ↵ | Attila Molnar | |
on GetMaxFds() From man epoll: Since Linux 2.6.8, the size argument is unused, but must be greater than zero. (The kernel dynamically sizes the required data structures without needing this initial hint.) | |||
2014-06-07 | Relax fd bounds checking | Attila Molnar | |
We can cope with fds greater than SocketEngine::GetMaxFds() since 3752b3f59d5216d7dc6221a361efc76b9ad2273d | |||
2014-06-07 | Fix harmless loop off-by-ones found by Moonlightning | satmd | |
2014-06-07 | m_channames Remove temporary vector from ValidateChans() | Attila Molnar | |
2014-06-07 | m_channames Call ValidateChans() from cull() on unload | Attila Molnar | |
This ensures that if ValidateChans() removes everyone from a channel the channel is added to the cull list at the right time, that is, before the destruction of objects begin. The core IsChannel() is less strict than us regardless of our configuration (for now) but nevertheless this is the correct behavior. | |||
2014-06-06 | m_spanningtree Forward NICK messages when they cause a collision with the ↵ | Attila Molnar | |
new nick param rewritten to the uuid Suppressing these messages meant that we relied on an appropriate NICK to come from the direction the SAVE was sent to; this left all servers behind us uninformed until the target server of the SAVE reacted with a nick change to uuid. This was problematic because someone can legitimately change nick to the past nick of the SAVEd user on a server that already has the SAVEd user with the uuid nick and that nick change message can reach servers that haven't yet seen the nick change to uuid of the SAVEd user. | |||
2014-06-06 | m_spanningtree Fix cleanup of connections when unloading a module that ↵ | Attila Molnar | |
provides an IOHook | |||
2014-05-28 | m_ident Close the ident socket when the object is culled instead of using hooks | Attila Molnar | |
2014-05-28 | m_ident Make use of the min parameter of ConfigTag::getInt() | Attila Molnar | |
2014-05-28 | m_ident: Add an option to allow idents of users to still be prefixed with a ↵ | Robby- | |
'~' for connect classes which have disabled ident lookups through the <connect:useident> setting. Fixes #683. Some changes by @attilamolnar, original PR #684 | |||
2014-05-26 | m_ssl_gnutls Don't include cap.h | Attila Molnar | |
The tls cap is handled by m_starttls | |||
2014-05-26 | Switch to std::string::compare() from substr() in a couple of places | Attila Molnar | |
2014-05-23 | Prefix all definitions in config.h to avoid potential collisions. | Peter Powell | |
2014-05-21 | Update server.cpp | Dan Parsons | |
Rewrote "invalid credentials" error message to remove confusion regarding "server snomask", which some users interpreted as "I must make sure the snomask on each server is identical" (which makes no sense), when really the intention is basically "look at the logs on the other server". | |||
2014-05-16 | m_passforward: Don't forward password if the connect block required a ↵ | Googolplexed | |
password to connect | |||
2014-05-12 | Update core_stats.cpp | WindowsUser | |
Make this consistent with other "Permission Denied" errors. | |||
2014-05-10 | m_ldap: time out LDAP queries | Adam | |
Set LDAP_OPT_NETWORK_TIMEOUT to 0 in m_ldap to prevent the asynchronous library calls from blocking Fix memory leak of pending queries when m_ldap is unloaded | |||
2014-05-08 | Fix m_permchannels and m_xline_db on Windows | Adam | |
The call to remove() can fail if the database doesn't already exist. Just ignore the error, which effectively makes the rename() call below work as it does on nix | |||
2014-05-06 | Remove needless checks from Invitation::Find() | Attila Molnar | |
2014-05-01 | m_cgiirc Call User::InvalidateCache() after changing host and dhost in ↵ | Attila Molnar | |
OnCheckReady() | |||
2014-04-29 | m_spanningtree Advertise the availability of m_globops in CAPAB CAPABILITIES | Attila Molnar | |
2014-04-26 | m_spanningtree Set the bursting flag in the FJOIN handler based on whether ↵ | Attila Molnar | |
the source of the FJOIN is bursting or not Previously the flag was true if our route to the source was bursting, which resulted in m_joinflood incorrectly registering netjoins when a remote server was bursting Fixes issue #839 reported by @joshtek0 | |||
2014-04-26 | Remove redundant IS_LOCAL() checks discovered by static asserts | Attila Molnar | |
2014-04-20 | Change the OnNamesListItem() hook to return ModResult | Attila Molnar | |
Return MOD_RES_DENY to exclude the user from the NAMES list | |||
2014-04-16 | m_spanningtree Add ServerCommand::ExtractTS() to convert string to raw TS | Attila Molnar | |
Throws a ProtocolException if the input is invalid | |||
2014-04-16 | m_spanningtree Throw an exception on protocol violations instead of ↵ | Attila Molnar | |
returning CMD_INVALID Catch CoreExceptions, log and close the link in OnDataReady() | |||
2014-04-14 | Remove WALLCHOPS and WALLVOICES ISUPPORT tokens | Attila Molnar | |
These tokens have been deprecated in favour of STATUSMSG for a long time | |||
2014-04-14 | core_lusers Don't capitalize "local users" and "global users" | Attila Molnar | |
2014-04-14 | m_sajoin, m_sapart Support a comma separated list of channels | Attila Molnar | |
Issue #818 | |||
2014-04-14 | m_sajoin Abort and report if the target user is already on the channel | Attila Molnar | |
Fixes issue #820 reported by @UselessOper | |||
2014-04-14 | m_spanningtree Fix routing of unicast messages | Attila Molnar | |
2014-04-13 | Change Windows libraries to be dynamically linked | Adam | |
2014-04-13 | m_ssl_openssl Avoid Applink on Windows by calling PEM_read_bio_DHparams() ↵ | Attila Molnar | |
instead of PEM_read_DHparams() | |||
2014-04-13 | Allow uppercase letters in IPv6 CIDR masks | Attila Molnar | |
2014-04-13 | m_auditorium Handle NULL return from Channel::GetUser() in OnSendWhoLine() | Attila Molnar | |
Found by Coverity, CID: 1135647 | |||
2014-04-13 | Ignore NULL callbacks in ModuleManager::Reload() | Attila Molnar | |
Found by Coverity, CID: 1201453 |