diff options
author | David Timber <mieabby@gmail.com> | 2020-01-11 18:03:47 +1100 |
---|---|---|
committer | David Timber <mieabby@gmail.com> | 2020-01-11 18:03:47 +1100 |
commit | 10512fc50e6184397206a41c157c09d9b02e9e1a (patch) | |
tree | 5f0779032edf0f0710400ae6c99b9a3f2977735d /src/htbt-worker.h | |
parent | 129e12d7685a6ea99fde514ad104a0368a19033d (diff) |
staged resolv_worker
* replaced RNG from `rnd` to `mbedtls_ctr_drbg`
* use of `uint_fastN_t` where appropriate
* heartbeat protocol draft
* improved worker scheduling mech
Diffstat (limited to 'src/htbt-worker.h')
-rw-r--r-- | src/htbt-worker.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/htbt-worker.h b/src/htbt-worker.h new file mode 100644 index 0000000..9d4ac33 --- /dev/null +++ b/src/htbt-worker.h @@ -0,0 +1,9 @@ +#pragma once +#include "worker.h" + +#include <stddef.h> +#include <stdbool.h> +#include <stdint.h> + + +bool prne_alloc_htbt_worker (prne_worker_t *w); |