Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Copyright notices: remove years and replace e-mail | Oto Šťáva | 2022-12-14 | 1 | -1/+1 |
| | |||||
* | spelling | Josh Soref | 2021-11-19 | 1 | -1/+1 |
| | | | | Signed-off-by: Josh Soref <jsoref@users.noreply.github.com> | ||||
* | treewide: rename assumptions to kr_assert() / kr_fails_assert() | Tomas Krizek | 2021-05-25 | 1 | -6/+6 |
| | | | | | | | | | | | | | To (hopefully) improve readability, rename the typical macro usage of: if (!kr_assume(x)) y; // to if (kr_fails_assert(x)) y; As a convenience, replace the assert without a return value to a more simple version: (void)!kr_assume(x); // becomes kr_assert(x); | ||||
* | lib/generic/pack.h: replace asserts | Tomas Krizek | 2021-05-25 | 1 | -37/+21 |
| | |||||
* | doc-comments: fix some of the complaints from doxygen | Vladimír Čunát | 2020-07-15 | 1 | -1/+1 |
| | | | | | | | There's still frequent issue that documenting some parameters would be mainly noise but doxygen will warn when not doing it. WARN_IF_UNDOCUMENTED apparently doesn't cover this and WARN_IF_DOC_ERROR would probably remove even some useful warnings. | ||||
* | treewide: machine readable license for GNU GPLv3+ source code | Petr Špaček | 2020-02-25 | 1 | -13/+1 |
| | | | | | Long GNU GPLv3 boilderplate was automatically replaced with machine readable tag. | ||||
* | lib/generic/pack: switch to NULL on empty pack iterator | Marek Vavruša | 2018-06-18 | 1 | -6/+14 |
| | | | | | | It's probably slightly safer to use NULL than end-array pointer, so let's use it in this case. Significantly adapted by Vlada from original Marek's change, after master fixed the corruption. | ||||
* | lib/generic/pack: more NULL checks | Vladimír Čunát | 2018-04-23 | 1 | -3/+15 |
| | | | | Inspired by Marek's MR. | ||||
* | lib/generic/pack: fix a bug/inconsistency | Vladimír Čunát | 2018-04-23 | 1 | -3/+7 |
| | | | | The NULL is never tested, and it was breaking our usual iteration pattern. | ||||
* | struct kr_zonecut::nsset: migrate from map_t to trie_t | Vladimír Čunát | 2018-04-12 | 1 | -14/+21 |
| | |||||
* | lib/generic/{array,pack}: improve documentation | Vladimír Čunát | 2018-04-12 | 1 | -4/+14 |
| | |||||
* | pack_clone: new function | Vladimír Čunát | 2018-04-12 | 1 | -0/+19 |
| | |||||
* | hints: change the handling of repeated hints (again) | Vladimír Čunát | 2017-07-14 | 1 | -0/+19 |
| | | | | | In reverse (PTR) records, now the last definition wins, and non-canonical names don't get (shadowed) records. | ||||
* | Update copyright information with 2017 | Ondřej Surý | 2017-01-25 | 1 | -1/+1 |
| | |||||
* | www.gnu.org prefers https | Daniel Kahn Gillmor | 2016-07-16 | 1 | -1/+1 |
| | |||||
* | lib: cleanup, return value checks | Marek Vavruša | 2015-11-28 | 1 | -1/+2 |
| | |||||
* | generic/pack: support for lookup | Marek Vavruša | 2015-05-29 | 1 | -12/+25 |
| | |||||
* | lib/zonecut: use mempool for nsset pack | Marek Vavruša | 2015-05-19 | 1 | -1/+1 |
| | |||||
* | doc: updated API doc and examples | Marek Vavruša | 2015-04-22 | 1 | -1/+3 |
| | |||||
* | lib: fixed dead code and early dereference | Marek Vavruša | 2015-04-19 | 1 | -1/+1 |
| | |||||
* | lib/generic: missing include guard, updated doc | Marek Vavruša | 2015-04-19 | 1 | -0/+2 |
| | |||||
* | lib/generic: implemented deletion for pack | Marek Vavruša | 2015-04-18 | 1 | -1/+24 |
| | |||||
* | doc: updated library doc | Marek Vavruša | 2015-04-15 | 1 | -18/+29 |
| | |||||
* | lib/generic: new data structure - packed list | Marek Vavruša | 2015-04-15 | 1 | -0/+118 |