| Commit message (Expand) | Author | Age | Files | Lines |
| * | Fix a ton of -Wsign-conversion warnings. | Peter Powell | 2017-11-17 | 1 | -1/+1 |
| * | m_spanningtree Change type of Link::Name to std::string•••Switch to stdalgo::string::equalsci()
| Attila Molnar | 2016-08-22 | 1 | -2/+1 |
| * | m_spanningtree Send snotice with the negotiated ciphersuite when connected us... | Attila Molnar | 2016-04-28 | 1 | -0/+10 |
| * | m_spanningtree Use uint64_t for the burst start time to avoid overflows | Attila Molnar | 2015-05-13 | 1 | -1/+1 |
| * | m_spanningtree Clean up comments | Attila Molnar | 2015-05-13 | 1 | -2/+2 |
| * | Reduce std::string::substr() usage•••substr() returns a new string while erase() and assign() modify the existing one
| Attila Molnar | 2015-01-10 | 1 | -1/+1 |
| * | m_spanningtree Sync bursting state of servers in SERVER•••Also send the time when they started bursting
| Attila Molnar | 2014-07-27 | 1 | -1/+5 |
| * | m_spanningtree Parse additional information present in SERVER messages•••Format: <key>[=<value>]
| Attila Molnar | 2014-07-27 | 1 | -0/+18 |
| * | m_spanningtree Add TreeServer::BeginBurst() that marks a server as bursting•••Don't mark servers as bursting in the constructor
| Attila Molnar | 2014-07-27 | 1 | -0/+2 |
| * | m_spanningtree Remove unused parameters from the server introduction message•••This does not affect the initial SERVER message containing the password
| Attila Molnar | 2014-07-27 | 1 | -5/+2 |
| * | m_spanningtree Add newly created TreeServers to the parent's list in the cons... | Attila Molnar | 2014-07-27 | 1 | -1/+0 |
| * | m_spanningtree Don't pointlessly copy strings in SERVER handlers | Attila Molnar | 2014-07-27 | 1 | -7/+7 |
| * | m_spanningtree Deduplicate server auth code | Attila Molnar | 2014-07-27 | 1 | -55/+28 |
| * | m_spanningtree Deduplicate auth finish code | Attila Molnar | 2014-07-27 | 1 | -11/+1 |
| * | m_spanningtree Remove duplicated code from TreeSocket::Outbound_Reply_Server()•••This is implemented in CheckDuplicate()
| Attila Molnar | 2014-07-27 | 1 | -14/+1 |
| * | Merge insp20 | Attila Molnar | 2014-07-25 | 1 | -2/+2 |
| |\ |
|
| | * | Update server.cpp•••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".
| Dan Parsons | 2014-05-21 | 1 | -2/+2 |
| * | | m_spanningtree Introduce command builders | attilamolnar | 2013-08-27 | 1 | -5/+10 |
| * | | m_spanningtree Allow server-to-server command handlers to specify whether the...•••To make life easier for handlers accepting servers only as source, pass them a TreeServer* so they don't have to call FindServer()
| attilamolnar | 2013-08-25 | 1 | -5/+1 |
| * | | m_spanningtree Implement DoOneToMany() using DoOneToAllButSender() | attilamolnar | 2013-08-22 | 1 | -1/+1 |
| * | | m_spanningtree Change TreeServer::GetSocket() to always return the socket tha...•••The only exception is the tree root (us) which has no associated socket (NULL)
Add TreeServer::IsRoot() and IsLocal() helpers
| attilamolnar | 2013-08-22 | 1 | -2/+2 |
| * | | m_spanningtree Move all server-to-server command handlers into handler classes•••These commands are not registered in or called by the core. When looking for the handler of a command a new command table is searched first which contains all server-to-server commands. If a handler cannot be found in there, the core command table is consulted.
| attilamolnar | 2013-08-18 | 1 | -22/+15 |
| * | | m_spanningtree Remove SpanningTreeUtilities* fields and parameters | attilamolnar | 2013-08-17 | 1 | -2/+2 |
| * | | Remove $ModDep comments | attilamolnar | 2013-08-15 | 1 | -2/+0 |
| * | | Change modules to use the MODNAME constant when logging.•••The majority of modules were logging with their module name as the
log type. There was a few places which were logging to a non-name
type but, with the exception of CONFIG, those messages are so
uncommon that it doesn't make sense to use a seperate type for
them.
| Peter Powell | 2013-08-04 | 1 | -1/+1 |
| * | | Merge insp20 | attilamolnar | 2013-04-28 | 1 | -27/+40 |
| |\| |
|
| | * | m_spanningtree Fix crash when connecting to a remote server that has the same...•••See 49223cfe12ecd9071123f724e615e63841f2421d
| attilamolnar | 2013-04-23 | 1 | -2/+3 |
| | * | m_spanningtree Create new TreeServers for incoming connections only when they... | attilamolnar | 2013-04-10 | 1 | -25/+37 |
| * | | m_spanningtree Ignore hopcount in incoming SERVER command, always send 0 at b... | attilamolnar | 2013-04-13 | 1 | -16/+0 |
| * | | m_spanningtree Remove unneeded #includes | attilamolnar | 2013-04-12 | 1 | -4/+0 |
| * | | m_spanningtree atoi() to ConvToInt() conversion, add const where possible•••Remove two redundant functions from Utils
| attilamolnar | 2013-04-12 | 1 | -2/+2 |
| * | | Add LOG_ prefix to the log level enum values. | Peter Powell | 2013-04-12 | 1 | -1/+1 |
| * | | Convert IsSID() to a static member function, modules shouldn't override it | attilamolnar | 2013-04-01 | 1 | -1/+1 |
| |/ |
|
| * | Remove superfluous std::string()s | attilamolnar | 2012-10-12 | 1 | -1/+1 |
| * | m_spanningtree Burst to a new server before introducing it to the rest of the...•••Fixes issue #103 reported by @nenolod
| attilamolnar | 2012-06-12 | 1 | -6/+2 |
| * | Replace copyright headers with headers granting specific authors copyright | Robby- | 2012-04-19 | 1 | -8/+15 |
| * | Restore prefix | Jackmcbarn | 2010-12-02 | 1 | -1/+1 |
| * | Fix possible crash | Jackmcbarn | 2010-12-02 | 1 | -1/+1 |
| * | Fix crash when a remote server has the same name as we do | Daniel De Graaf | 2010-04-16 | 1 | -2/+3 |
| * | Clean up treesocket naming confusion by adding a link block reference during ...•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12452 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2010-02-13 | 1 | -14/+13 |
| * | ...because every now and again, i have to do a massive commit.•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12248 e03df62e-2008-0410-955e-edbf42e46eb7
| brain | 2010-01-11 | 1 | -1/+1 |
| * | Update Event and Request APIs•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11808 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2009-10-08 | 1 | -6/+0 |
| * | Allow multiple autoconnects in a single <autoconnect> tag, fix infinite failover•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11786 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2009-09-30 | 1 | -2/+4 |
| * | Remove InspIRCd* parameters and fields•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11763 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2009-09-26 | 1 | -2/+2 |
| * | Create StreamSocket for IO hooking implementation•••Fixes the SSL SendQ bug
Removes duplicate code between User and BufferedSocket
Simplify SSL module API
Simplify EventHandler API (Readable/Writeable moved to SE)
Add hook for culled objects to invoke callbacks prior to destructor
Replace SocketCull with GlobalCull now that sockets can close themselves
Shorten common case of user read/parse/write path:
User::Write is now zero-copy up to syscall/SSL invocation
User::Read has only two copy/scan passes from read() to ProcessCommand
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11752 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2009-09-21 | 1 | -23/+23 |
| * | Change cmd_*.so to use the Module object API•••Create Module* objects for each command, and load them like modules.
This unifies the external API for modules.
Library directory is now deprecated: all modules are located in a
single module directory.
Header files for each command are no longer needed; remove.
This also fixes two potential segfaults in m_spanningtree.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11668 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2009-09-03 | 1 | -2/+0 |
| * | Add modules to the VF_COMMON list in backwards compatability link mode, trans...•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11657 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2009-09-02 | 1 | -5/+3 |
| * | Replace std::deque with std::vector in spanningtree and related modules•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11593 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2009-09-02 | 1 | -3/+3 |
| * | Fix build of m_spanningtree and display of dependency regeneration•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11557 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2009-09-01 | 1 | -6/+6 |
| * | Allow SSL fingerprint-based server authentication•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11404 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2009-06-07 | 1 | -2/+2 |