aboutsummaryrefslogtreecommitdiff
path: root/pseudoclients/services.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2024-07-24Initial InspIRCd v4/1206 protocol supportRunxi Yu5-1/+2360
2024-07-24This is what was intendedTest_User1-1/+1
2024-07-24Probable outgoing IPv6 supportTest_User9-40/+84
2024-07-24Fix gnutls_bufferedTest_User1-9/+4
2024-07-24haxstring: Add parenthesis to macro argumentsRunxi Yu1-2/+2
WRITES(fd, *s) where s is a pointer to a struct string will not compile, as the macro expands to write(fd, *s.data, *s.len), which it expects s to be a struct string and attempts to use s.data and s.len as pointers. This is, of course, erroneous. The correct expansion is write(fd, (*s).data, (*s).len); while write(fd, s->data, s->len) is desirable, it is not achievable with a simple macro expansion. In any case, the parenthesis shall be added.
2024-07-23v4 rejects this otherwise currently, and the reason is fake here anywaysTest_User1-1/+1
2024-07-23Fix semaphore codeTest_User1-0/+1
2024-07-23Fix SERVER introductionsTest_User1-2/+2
2024-07-24CI: Disable Fedora too because runxiyu regularly builds it on FedoraRunxi Yu1-5/+6
2024-07-24CI: Fix again, because apparently empty list items are prohibitedRunxi Yu1-5/+6
2024-07-24CI: Fix last commitRunxi Yu4-9/+9
Apparently it didn't really work because setting the branch list to empty causes it to always run, ignoring the branch. So the current solution is just to comment out the build commands.
2024-07-24CI: Don't run Debian for now.Runxi Yu1-1/+1
The Debian target is extremely slow and probably takes qutie a bit of Codeberg's CI resources. Test_User uses Debian anyway so there's not much point in running the CI.
2024-07-23InspIRCd v3 raw command for HaxServTest_User2-2/+24
2024-07-23Fix InspIRCd v3 PING handlerTest_User1-5/+1
2024-07-23InspIRCd v3 supportTest_User4-136/+523
2024-07-22Bit of improvement on error handling for networkingTest_User5-1/+33
2024-07-22File descriptionsTest_User37-26/+51
2024-07-22Configurable services db pathTest_User3-3/+11
2024-07-22CI: Install missing packagesRunxi Yu4-4/+4
2024-07-22CI: Use misc.git's configsRunxi Yu4-5/+9
2024-07-22CI: Accept the "runxiyu" branch tooRunxi Yu4-4/+4
2024-07-19Minimal support for non-semaphore-supporting systemsTest_User2-1/+37
2024-07-18Partial nickname enforcement implementedTest_User12-53/+154
2024-07-07Fix REGISTER, add error messagesTest_User1-2/+13
2024-06-26UNGROUPTest_User1-0/+59
2024-06-26ADDCERT/DELCERTTest_User1-5/+108
2024-06-25LISTTest_User2-3/+56
2024-06-25GROUPTest_User2-2/+82
2024-06-24Yay basic NickServ actually functions nowTest_User8-10/+199
2024-06-24More services stuffTest_User13-17/+204
2024-06-24The start of some services, inspircd3 support extra broken for nowTest_User13-17/+356
2024-06-23Misc stuffTest_User2-4/+9
2024-06-21-pthread mutex, +semaphoresTest_User7-238/+64
2024-06-20Seperate futex fom atomicsTest_User4-38/+41
2024-06-20FixesTest_User1-0/+3
2024-06-20Reduced locking buffered openssl writing now readyTest_User2-29/+61
2024-06-20Fix typoTest_User1-1/+1
2024-06-20Only syscall to wake if there's one to be wokenTest_User1-5/+7
2024-06-20partial lockless send for buffered plaintextTest_User1-9/+48
2024-06-20Reorder plaintext buffered send codeTest_User1-10/+8
2024-06-19Fix some missing returnsTest_User2-2/+4
2024-06-19Mark futexes as private since it's all same-process, fix timeout on ↵Test_User3-3/+21
plaintext connections
2024-06-19More logging, CI fixTest_User2-1/+18
2024-06-19Probably improve CI efficiencyTest_User1-1/+1
2024-06-19Fix some locking bugsTest_User2-3/+8
2024-06-19Don't send more than half the buffer at a timeTest_User3-18/+4
2024-06-19Some improvements and openssl send bufferingTest_User12-31/+1347
2024-06-18pthread option for buffered sendingTest_User1-2/+72
2024-06-18More futexes, so it actually works decently now... still no pthread mutex ↵Test_User1-6/+25
support here though
2024-06-18Some fixesTest_User3-20/+59