summaryrefslogtreecommitdiffstats
path: root/inc/dnbd3/shared
Commit message (Collapse)AuthorAgeFilesLines
* [SERVER] iscsi: Refactor receive function and PDU handlingSimon Rettberg2025-12-091-1/+1
| | | | | | | | | | | | - Fold header/data handling into one function This uncovered a few redundant checks and makes it easier to reason about control flow - Make all iscsi_pdu stack-allocated This greatly reduces the number of malloc and free calls during normal operation, lowers the risk of memory management bugs, and potentially increases performance in high concurrency scenarios.
* [SERVER] iscsi: use sendfile()Simon Rettberg2025-12-091-0/+5
|
* [KERNEL] Removes duplicate word 'of' in license headersManuel Bentele2021-04-161-1/+1
|
* [BUILD] Add support in CMake to validate (lint) the source codeManuel Bentele2021-03-041-2/+1Star
|
* [BUILD] add option to build the dnbd3-server with afl-fuzz supportManuel Bentele2020-10-201-0/+15
| | | | | The afl-fuzz support for the dnbd3-server requires an AFL C compiler like afl-gcc and can be enabled with the CMake option DNBD3_SERVER_AFL.
* [BUILD] fixes issues to build user space programs on FreeBSD 12.1Manuel Bentele2020-10-191-4/+0Star
|
* [BUILD] rewrite CMake build system to track changes of source filesManuel Bentele2020-10-167-0/+609
This change restructures the source code directories, separates shared form non-shared application code and adds CMake dependencies. These dependencies allow the tracking of changes and trigger a rebuild of those build targets where changed files are involved. WARNING: Note that the support of the DNBD3_SERVER_AFL build option is not supported yet. Thus, the option should be never turned on.