index
:
~steering
/
inspircd++.git
this commit
insp2
insp4
Unnamed repository; edit this file 'description' to name the repository.
steering7253
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
users.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
|
Rip out the OnConnectionFail event.
•••
This never really worked correctly and will now be replaced with something better.
Sadie Powell
2021-04-19
1
-4
/
+1
*
|
Migrate collections from insert to emplace.
Sadie Powell
2021-04-18
1
-1
/
+1
*
|
Fix various uses of the _t suffix which is reserved by POSIX.
Sadie Powell
2021-04-17
1
-1
/
+1
*
|
Switch simple iterator loops to use range-based for loops.
Sadie Powell
2021-04-07
1
-14
/
+6
*
|
Fix a ton of pedantic compiler warnings.
Sadie Powell
2021-04-04
1
-3
/
+3
*
|
Constify variables within loops.
Sadie Powell
2021-04-01
1
-1
/
+1
*
|
Merge branch 'insp3' into master.
Sadie Powell
2021-03-30
1
-9
/
+17
|
\
|
|
*
Add support for matching multiple hosts in <connect:{allow,deny}>.
Sadie Powell
2021-03-30
1
-3
/
+14
|
*
Remove some todo comments which are outdated or misleading.
Sadie Powell
2021-03-05
1
-1
/
+0
*
|
Merge branch 'insp3' into master.
Sadie Powell
2021-03-05
1
-2
/
+2
|
\
|
|
*
Update copyright headers.
InspIRCd Robot
2021-03-05
1
-2
/
+2
*
|
Refactor classbase/CullResult into Cullable/Cullable::Result.
Sadie Powell
2021-03-02
1
-7
/
+7
*
|
Merge branch 'insp3' into master.
Sadie Powell
2021-02-28
1
-1
/
+1
|
\
|
|
*
Update copyright headers.
InspIRCd Robot
2021-02-26
1
-1
/
+1
*
|
Make MyClass private and move everything to GetClass.
Sadie Powell
2021-01-31
1
-11
/
+11
*
|
Replace all internal references to uline with services.
Sadie Powell
2021-01-30
1
-4
/
+4
*
|
Merge branch 'insp3' into master.
Sadie Powell
2021-01-13
1
-30
/
+19
|
\
|
|
*
Improve parsing modes and snomasks in oper classes.
•••
- Deduplicate the code to one function. - Fix defaulting snomasks when a user has more than one class.
Sadie Powell
2021-01-12
1
-29
/
+30
*
|
Rename IdentMax to MaxUser for consistency with the other limits.
Sadie Powell
2020-11-27
1
-1
/
+1
*
|
Convert UserType to be a uint8_t and move inside User.
Sadie Powell
2020-11-10
1
-4
/
+4
*
|
Merge branch 'insp3' into master.
Sadie Powell
2020-11-03
1
-22
/
+33
|
\
|
|
*
Make connect class debug logging more complete and consistent.
Sadie Powell
2020-11-03
1
-22
/
+33
*
|
Rename ConfigTag::tag to ConfigTag::name.
Sadie Powell
2020-11-03
1
-1
/
+1
*
|
Move FilePosition to fileutils.h and use in ConfigTag.
Sadie Powell
2020-11-03
1
-1
/
+1
*
|
Replace ConfigTag::create with a public constructor.
Sadie Powell
2020-11-03
1
-5
/
+3
*
|
Rename ConfigItems to ConfigTag::Items.
Sadie Powell
2020-11-03
1
-8
/
+6
*
|
Convert ConnectClass from reference<> to std::shared_ptr<>.
Sadie Powell
2020-11-03
1
-12
/
+10
*
|
Clean up a bunch of contructors and destructors.
Sadie Powell
2020-11-01
1
-4
/
+0
*
|
Merge branch 'insp3' into master.
Sadie Powell
2020-11-01
1
-1
/
+4
|
\
|
|
*
Don't call the OnChangeRealHost event when initialising a user.
•••
Fixes a (git only) crash when a user gets xlined before they have been initialised.
Sadie Powell
2020-10-29
1
-1
/
+4
*
|
Convert ConfigTag from reference<> to std::shared_ptr<>.
Sadie Powell
2020-10-31
1
-5
/
+3
*
|
Convert OperInfo from reference<> to std::shared_ptr<>.
Sadie Powell
2020-10-31
1
-1
/
+1
*
|
Merge branch 'insp3' into master.
Sadie Powell
2020-10-27
1
-0
/
+1
|
\
|
|
*
Fix firing the wrong event when a real hostname changes.
Sadie Powell
2020-10-08
1
-1
/
+1
|
*
Recheck users for xlines when their real hostname changes.
Sadie Powell
2020-10-06
1
-0
/
+1
*
|
Merge branch 'insp3' into master.
Sadie Powell
2020-09-18
1
-1
/
+1
|
\
|
|
*
Fix OnChangeRealName not being fired for remote users.
Sadie Powell
2020-09-01
1
-1
/
+1
*
|
Merge branch 'insp3' into master.
Sadie Powell
2020-07-29
1
-1
/
+1
|
\
|
|
*
Replace all erroneous space indentation with tab indentation.
Sadie Powell
2020-07-29
1
-1
/
+1
*
|
Fix the case of getError/getSendQSize and rewrite the doc comments.
Sadie Powell
2020-07-20
1
-3
/
+3
*
|
Split OnSetEndPoint into two events.
Sadie Powell
2020-07-20
1
-3
/
+8
*
|
Merge branch 'insp3' into master.
Sadie Powell
2020-05-05
1
-3
/
+2
|
\
|
|
*
Update copyright headers.
InspIRCd Robot
2020-04-24
1
-2
/
+1
|
*
Fixes by misspell-fixer
InspIRCd Robot
2020-04-21
1
-1
/
+1
*
|
Revert "Convert UserType to an enum class".
•••
There's a bug in GCC with bitfields and enum class. https://gcc.gnu.org/bugzilla/show_bug.cgi?id=51242 This reverts commit 44834a66a7e92c8979ae16421286c581a9cffbe9.
Sadie Powell
2020-04-21
1
-3
/
+3
*
|
Convert UserType to an enum class.
Sadie Powell
2020-04-21
1
-3
/
+3
*
|
Merge branch 'insp3' into master.
Sadie Powell
2020-04-14
1
-18
/
+36
|
\
|
|
*
Add support for limiting what opers can subscribe to snomasks.
Sadie Powell
2020-04-11
1
-0
/
+24
|
*
Clean up the logic for parsing oper mode privileges.
Sadie Powell
2020-04-11
1
-18
/
+12
*
|
Merge branch 'insp3' into master.
Sadie Powell
2020-04-09
1
-2
/
+2
|
\
|
[prev]
[next]