aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_spanningtree
Commit message (Expand)AuthorAgeFilesLines
* m_spanningtree Fix desync issue #37 reported by @JoahGravatar attilamolnar2012-06-121-7/+7
* Be consistent with Robby's qQ snomask changesGravatar Sir Poggles2012-06-121-1/+1
* Fixed Windows build.•••Squash commit of the following from 2.0: commit cbd0b938d1e6a24c082fd510f3f6bb45a1ba3ce0 commit d392720f7fe4e3a85aec0f431b24d852d186d353 commit 30477f569bbd21590ad0687b5f09012deeb2b40e commit 4707f65e75867e443cbab8a5dcb0379341537263 commit e37621e04ea3b80c6f57c89873e530506f8d5587 commit 92cac06fc2e4207614efe0292d6cdf2954ff30a9 Plus many additional 2.1 specific fixes. Gravatar Adam2012-06-062-2/+1
* Merge pull request #169 from attilamolnar/insp21+spanningtreeapi•••[2.1] Stop exposing the raw linking protocol to modulesGravatar Robin Burchell2012-05-302-3/+3
|\
| * Stop exposing the raw linking protocol to modulesGravatar attilamolnar2012-05-292-3/+3
* | m_spanningtree Add channel timestamp to FTOPIC in protocol version 1204•••Fixes issue #148 Gravatar attilamolnar2012-05-294-14/+94
* | m_spanningtree Add timestamp to channel METADATA, introduce protocol version ...•••Fixes issue #119 Gravatar attilamolnar2012-05-294-5/+69
|/
* Debian typo fixes.Gravatar Peter Powell2012-05-251-3/+3
* Headers nitpicking: consistency, remove/add newlines as needed to match all o...Gravatar Robby-2012-04-209-0/+9
* Replace copyright headers with headers granting specific authors copyright.•••Fixes #61. Gravatar Robin Burchell2012-04-1953-392/+813
* Forward port 1d703dcf7858a322c823bbd80f9507b627c5738c.Gravatar attilamolnar2012-04-181-1/+1
* Fix typo.Gravatar Robin Burchell2012-04-181-1/+1
* Match the logging in the rest of this module.Gravatar Robin Burchell2012-04-181-3/+3
* Be more helpful when processing commands from a linked server.•••When diagnosing errors with s2s traffic, it costs us next to nothing to try a little harder to generate useful errors so errors are immediately apparent. Gravatar Robin Burchell2012-04-181-5/+18
* Fix some of the include guard names (requested by SaberUK)Gravatar Justin Crawford2012-04-1510-20/+21
* Fixes for issue #12Gravatar Justin Crawford2012-04-159-18/+18
* Always use local SID as the source for PONG repliesGravatar Daniel De Graaf2011-06-231-1/+1
* Update copyright notices to 2011Gravatar Jackmcbarn2011-05-0449-49/+49
* Fix timeout defaulting to zero for link blocksGravatar Daniel De Graaf2011-02-281-1/+1
* Remove command_parse.h from inspircd.hGravatar Jackmcbarn2011-01-303-0/+3
* Remove inspsocket.h from inspircd.hGravatar Jackmcbarn2011-01-301-0/+1
* Remove dns.h from inspircd.hGravatar Jackmcbarn2011-01-301-0/+1
* Remove cull_list.h from inspircd.hGravatar Jackmcbarn2011-01-295-5/+6
* Remove protocol.h from inspircd.hGravatar Jackmcbarn2011-01-291-0/+1
* Fix memory leakGravatar Jackmcbarn2011-01-201-1/+1
* Fix bug #117, found by satmd, thanksGravatar Jackmcbarn2011-01-191-3/+3
* Forward port crash fix from 2.0Gravatar Jackmcbarn2010-12-021-1/+1
* Don't use a typedef as a variable nameGravatar Jackmcbarn2010-12-012-9/+9
* It's safe to delete a null pointerGravatar Jackmcbarn2010-12-011-2/+1
* Use std::string::npos rather than -1Gravatar Jackmcbarn2010-12-011-1/+1
* Fix reference-after-delete of ServerUser object in ~TreeServerGravatar Daniel De Graaf2010-11-091-2/+2
* Include reason in netsplit messageGravatar Daniel De Graaf2010-10-171-1/+1
* Rewrite TreeSocket timeout and lifecycle managementGravatar Daniel De Graaf2010-10-108-174/+125
* Add command to control autoconnect blocksGravatar Jackmcbarn2010-10-074-3/+89
* Avoid RESYNC on channel creation when possibleGravatar Daniel De Graaf2010-10-021-1/+16
* Fix error handling and bad SQL syntaxGravatar Daniel De Graaf2010-10-021-1/+2
* Remove some unneeded complexity from spanningtreeGravatar Daniel De Graaf2010-10-0215-367/+118
* Change spanningtree intercept of WHOIS to a DoWhois function in RemoteUserGravatar Daniel De Graaf2010-09-125-63/+10
* Move RemoteUser into spanningtreeGravatar Daniel De Graaf2010-09-123-1/+27
* Update m_flatfile_channels to be more robust•••Enable storage of registered channels without permanent channels, or vice versa Only set the dirty bit if a channel that is written to the database gets its mode or topic changed, rather than any channel or user Move NukeChannel to core and put announcets back in options Allow sending mode merges via the protocol interface Gravatar Jackmcbarn2010-09-066-63/+4
* Add CrashState for tracing basic call state when the stack is corruptGravatar Daniel De Graaf2010-08-252-2/+3
* Remove "assign()" converter between irc::string and std::stringGravatar Daniel De Graaf2010-08-222-4/+4
* Remove incorrect check of <link:ipaddr> as allowmaskGravatar Daniel De Graaf2010-08-221-11/+3
* Clarify the configuration tag function namesGravatar Daniel De Graaf2010-08-221-2/+2
* Replace remaining Request users with dynamic_referenceGravatar Daniel De Graaf2010-08-211-6/+4
* More config logging fixupsGravatar Daniel De Graaf2010-08-211-49/+22
* Move spanningtree config to <spanningtree> from various other placesGravatar Daniel De Graaf2010-08-211-15/+11
* Change config reading hook for better error reporting•••This eliminates the OnRehash hook, and replaces it with ReadConfig which is called on boot, module load, and rehash. Gravatar Daniel De Graaf2010-08-212-3/+3
* Fix null deref on distant proto_version check in FMODEGravatar Daniel De Graaf2010-08-161-1/+1
* Move a useful utility function from spanningtree to coreGravatar Daniel De Graaf2010-08-152-25/+4