aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Implemented ScanFile() on POSIXMartin Ridgers2021-10-251-4/+35
|
* Disabled unused-value warning as it fires at ZEN_UNUSED() sitesMartin Ridgers2021-10-251-0/+1
|
* Added some ZEN_UNUSED() statements for yet-to-be-implemented functionsMartin Ridgers2021-10-251-0/+2
|
* Deleted unused variableMartin Ridgers2021-10-251-1/+0
|
* Moved Vfs and Httpsys build options into a Windows-only blockMartin Ridgers2021-10-251-12/+12
|
* UINT16 -> uint16_tMartin Ridgers2021-10-251-2/+2
|
* Use zen::GetCurrentThreadId()Martin Ridgers2021-10-251-1/+1
|
* Cast to int() on the off chance that pid_t isn't oneMartin Ridgers2021-10-251-1/+1
|
* Added a zen::GetCurrentThreadId()Martin Ridgers2021-10-252-0/+11
|
* pthread implementation for naming a threadMartin Ridgers2021-10-251-0/+3
|
* Use m_ShutdownEvent.Wait() in HttpNullServer::Run() on POSIXMartin Ridgers2021-10-251-8/+7
|
* HttpAsioServer::Run() implementation for POSIX platformsMartin Ridgers2021-10-251-8/+22
|
* Made httpsys xmake option Windows onlyMartin Ridgers2021-10-251-6/+8
|
* Use StrCaseCompare() instead of Windows-only _stricmp()Martin Ridgers2021-10-252-2/+2
|
* Cross-platform string comparison helper plus testsMartin Ridgers2021-10-252-0/+25
|
* Merged mainMartin Ridgers2021-10-2519-196/+505
|\
| * zenserver: Tweaked state initialization so we know when we're running for ↵Stefan Boberg2021-10-212-72/+107
| | | | | | | | the first time and don't need to log about missing manifests
| * zenserver: don't try to delete the logs directory when wiping stateStefan Boberg2021-10-211-2/+4
| | | | | | | | also temporarily disabled scrubbing to work around startup sequencing problems
| * Fixed failing test.Per Larsson2021-10-211-1/+1
| |
| * Compressed oplog attachmentsPer Larsson2021-10-217-110/+377
| |
| * Added missing include.Per Larsson2021-10-201-0/+2
| |
| * Merge branch 'main' of https://github.com/EpicGames/zen into mainStefan Boberg2021-10-2010-13/+14
| |\
| | * Format fix.Per Larsson2021-10-2010-13/+14
| | |
| * | Added ZEN_THIRD_PARTY_INCLUDES_START to prevent compilation issuesStefan Boberg2021-10-201-0/+2
| |/
* | Implemented filecas.cpp for POSIX platformsMartin Ridgers2021-10-251-2/+92
| |
* | Added .gdb_history to .gitignoreMartin Ridgers2021-10-251-0/+1
| |
* | open() flags were incorrect and it would not create new filesMartin Ridgers2021-10-251-1/+1
| |
* | Made a note about a tick's unit and DateTime's epochMartin Ridgers2021-10-251-1/+1
| |
* | Grouped DateTime methods all togetherMartin Ridgers2021-10-251-82/+82
| |
* | DateTime::Now() for POSIX platformsMartin Ridgers2021-10-251-2/+20
| |
* | Missing return keywordMartin Ridgers2021-10-251-1/+1
| |
* | Merged mainMartin Ridgers2021-10-2010-67/+233
|\|
| * zen server: Added root manifest, with support for explicit schema versioningStefan Boberg2021-10-201-16/+101
| |
| * cb: Implemented DateTime::Now() and fixed DateTime/TimeSpan string formattingStefan Boberg2021-10-192-24/+69
| |
| * zenserver-test: Fixed up zcache testsStefan Boberg2021-10-191-6/+7
| |
| * string: Fixed ToLower logic (needs to use unsigned arithmetic)Stefan Boberg2021-10-192-2/+8
| |
| * iobuffer: added templated Data() to make typed data access easierStefan Boberg2021-10-191-0/+3
| |
| * httpasio: Implemented some handling for Expect: headerStefan Boberg2021-10-181-17/+33
| | | | | | | | | | | | We do not actually send a 100 CONTINUE still though since this is not necessary with the changes we made UE-side Also tweaked some of the internal request state management and added some debug logging
| * project store: DELETE {project} request now produces a correct HTTP responseStefan Boberg2021-10-181-0/+2
| |
| * httpsys: Added automatic translation of 200 OK -> 204 NO CONTENT for case ↵Stefan Boberg2021-10-181-2/+10
| | | | | | | | where there is no body (upset some clients)
* | Compile fixes due to std::fs::path's differing character typesMartin Ridgers2021-10-201-4/+7
| |
* | Fixed concrete Visitor to use the correct argument typesMartin Ridgers2021-10-201-2/+2
| |
* | Cross-platform argument to ZEN_DEBUG()Martin Ridgers2021-10-201-1/+1
| |
* | Added a ToUtf8() to ExtPathBuilderMartin Ridgers2021-10-201-0/+9
| |
* | Use the non-throwing version of std::fs::create_directories()Martin Ridgers2021-10-201-1/+2
| |
* | Use cross-platform ExtPathBuilder instead of ExtWideStrBuilderMartin Ridgers2021-10-182-6/+6
| |
* | Tests for ExtendablePathBuilderMartin Ridgers2021-10-181-0/+34
| |
* | Simple class for building paths based off an ExtendableStringMartin Ridgers2021-10-181-0/+40
| |
* | Implemented ReadFromFileMaybe() for POSIXMartin Ridgers2021-10-181-4/+8
| |
* | Merged mainMartin Ridgers2021-10-181-26/+87
|\|