index
:
~steering
/
inspircd++.git
this commit
main
upstream/HEAD
upstream/insp10
upstream/insp11
upstream/insp12
upstream/insp20
upstream/insp3
upstream/insp4
upstream/master
upstream/obsolete/insp21
Unnamed repository; edit this file 'description' to name the repository.
steering7253
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
include
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
|
Hashing: Redo API
•••
* Don't assume the printable output of hashes is hex * Add virtual Compare() function, usable for KDFs like BCrypt Some changes and bugfixes are by @attilamolnar, original PR #767
Daniel Vassdal
2014-08-04
1
-10
/
+24
*
|
Remove InspIRCd::BindSocket()
Attila Molnar
2014-08-04
1
-9
/
+0
*
|
Merge insp20
Attila Molnar
2014-07-25
1
-19
/
+19
|
\
|
|
*
Do not export callers
•••
Their functions are all inlined and Windows gives unresolved symbol errors
Adam
2014-05-08
1
-10
/
+10
|
*
Fix undefined symbol error on module load if compiled with Clang 3.4
•••
Fixes issue #803 reported by @SaberUK
Attila Molnar
2014-04-19
2
-10
/
+10
*
|
Access local user list via new UserManager::GetLocalUsers() and make local_us...
Attila Molnar
2014-07-19
1
-4
/
+9
*
|
Move and rename typedef LocalUserList to UserManager::LocalList
Attila Molnar
2014-07-19
2
-5
/
+5
*
|
Move typedef OperIndex to ServerConfig::OperIndex
Attila Molnar
2014-07-16
2
-3
/
+4
*
|
Move typedef ClassVector to ServerConfig::ClassVector
Attila Molnar
2014-07-16
2
-4
/
+4
*
|
Expand ISupportManager documentation
Attila Molnar
2014-07-14
1
-3
/
+10
*
|
Minor ISupportManager changes
•••
- Make GetLines() a const method - Rename Lines to cachedlines - Get rid of a variable in Build()
Attila Molnar
2014-07-14
1
-5
/
+2
*
|
Move ISupportManager class declaration to isupportmanager.h from inspircd.h
Attila Molnar
2014-07-14
2
-21
/
+42
*
|
Rename UserChanList to User::ChanList, remove UCListIter
Attila Molnar
2014-07-14
2
-9
/
+4
*
|
Remove typedef UserMembIter, use Channel::MemberMap::iterator instead
•••
Remove the now unused UserMembList typedef too
Attila Molnar
2014-07-14
2
-9
/
+4
*
|
Remove typedef UserMembCIter, use Channel::MemberMap::const_iterator instead
Attila Molnar
2014-07-14
1
-2
/
+0
*
|
Rename UserMembList to Channel::MemberMap, switch all code to use it
Attila Molnar
2014-07-14
1
-2
/
+8
*
|
Change return type of Channel::GetUsers() to reference from pointer as it is ...
Attila Molnar
2014-07-14
1
-1
/
+1
*
|
Move the TimerMap typedef into the private part of TimerManager
Attila Molnar
2014-07-10
1
-2
/
+2
*
|
Remove current time parameter of the Timer constructor
Attila Molnar
2014-07-10
3
-4
/
+3
*
|
Move the definition of Timer::Timer() into the source file from the header
•••
Use initialization list
Attila Molnar
2014-07-10
1
-6
/
+1
*
|
core_whowas Rename and move WhoWasGroup to WhoWas::Entry
Attila Molnar
2014-07-09
1
-34
/
+35
*
|
core_whowas Return a WhoWas::Manager::Stats struct from GetStats() instead of...
Attila Molnar
2014-07-09
1
-2
/
+9
*
|
core_whowas Split database logic into a WhoWas::Manager class
Attila Molnar
2014-07-09
1
-32
/
+81
*
|
core_whowas Rename misleading variables and typedefs
Attila Molnar
2014-07-09
1
-5
/
+5
*
|
core_whowas Switch from map to a hash map and from irc::string to std::string
Attila Molnar
2014-07-09
1
-3
/
+3
*
|
core_whowas Change the FIFO to be an intrusive list
Attila Molnar
2014-07-09
1
-6
/
+6
*
|
core_whowas Store the nickname in WhoWas::Nick
Attila Molnar
2014-07-09
1
-1
/
+5
*
|
core_whowas Store time added in WhoWas::Nick
Attila Molnar
2014-07-09
1
-0
/
+8
*
|
core_whowas Delete elements of the per nick deque in the destructor of WhoWas...
Attila Molnar
2014-07-09
1
-0
/
+4
*
|
core_whowas Create class WhoWas::Nick, store pointers to those in the map
Attila Molnar
2014-07-09
1
-1
/
+13
*
|
Add intrusive_list_tail container that maintains a pointer to the last element
Attila Molnar
2014-07-09
2
-0
/
+49
*
|
Make the name of intrusive list class configurable using a define
Attila Molnar
2014-07-09
2
-2
/
+4
*
|
Split intrusive list implementation into a separate file
Attila Molnar
2014-07-09
2
-110
/
+130
*
|
User::ChangeNick() cannot fail if the new nick is the uuid, document this and...
Attila Molnar
2014-07-03
1
-1
/
+1
*
|
Remove now needless User::ForceNickChange()
•••
Change call sites to call ChangeNick()
Attila Molnar
2014-07-03
1
-11
/
+1
*
|
Add InspIRCd::TimingSafeCompare() function that compares strings in a timing-...
Attila Molnar
2014-06-28
1
-0
/
+9
*
|
Add parameter to InspIRCd::TimeString for UTC time formats.
•••
Missing doc added by @attilamolnar
Peter Powell
2014-06-25
1
-1
/
+2
*
|
Add formatting to InspIRCd::TimeString; switch all code to use it.
•••
m_httpd also now uses the correct timestamp format. Windows-specific fixes by @attilamolnar, original PR #849
Peter Powell
2014-06-25
1
-1
/
+4
*
|
Inherit ThreadQueueData from Mutex to avoid duplicating code
Attila Molnar
2014-06-24
2
-32
/
+6
*
|
Remove empty Thread destructor
Attila Molnar
2014-06-24
1
-3
/
+0
*
|
Move and rename class ThreadData to ThreadEngine::ThreadState
Attila Molnar
2014-06-24
3
-15
/
+15
*
|
Move and rename ThreadData::FreeThread() to ThreadEngine::Stop() and document...
Attila Molnar
2014-06-24
2
-2
/
+24
*
|
Make Thread::state private
Attila Molnar
2014-06-24
1
-4
/
+9
*
|
Change allocation of ThreadData to be physically part of the object containin...
Attila Molnar
2014-06-24
1
-2
/
+2
*
|
Remove empty ThreadEngine constructors and destructors
Attila Molnar
2014-06-24
2
-14
/
+0
*
|
Remove the unused ThreadEngine::GetName() method from both implementations
Attila Molnar
2014-06-24
2
-16
/
+0
*
|
Change allocation of InspIRCd::Users to be physically part of the object cont...
Attila Molnar
2014-06-24
2
-2
/
+2
*
|
Change allocation of InspIRCd::SNO to be physically part of the object contai...
Attila Molnar
2014-06-24
2
-2
/
+2
*
|
Change allocation of InspIRCd::Modules to be physically part of the object co...
Attila Molnar
2014-06-24
2
-2
/
+2
*
|
Change allocation of InspIRCd::Logs to be physically part of the object conta...
Attila Molnar
2014-06-24
2
-2
/
+2
[prev]
[next]