aboutsummaryrefslogtreecommitdiff
path: root/src/util_rt.c
diff options
context:
space:
mode:
authorDavid Timber <mieabby@gmail.com>2021-07-25 18:40:16 +1000
committerDavid Timber <mieabby@gmail.com>2021-07-25 18:40:16 +1000
commita72b876cf8f7c01ab2d3808a168ef16620498298 (patch)
tree43b259cf3a20636f52aebd2d777f89cf95d66673 /src/util_rt.c
parentd875ed3b36f2a3fb5d6ceb3c37f6749603e4d0d3 (diff)
Impl htbt M2M binary update and bug fixes ...
* Change signature of tmpfile() cb * Add PRNE_DATA_KEY_VER_MAT * Add prne_try_alloc_iobuf() * Fix htbt: don't run cncp when both resolv and cnc_txtrec are not passed * Impl upbin cb on proone-bne * Fix proone-htbtclient: content of status frame was discarded * htbt is now responsible for setting FD_CLOEXEC on temp files * Changes in mttools for valgrind run * Add proone-test_iobuf * Fix event leak in resolv * src/test-resolv.sh: run proone-resolv on valgrind * Add prne_cmp_uuid_asc() and prne_cmp_uuid_desc() for version matrix *
Diffstat (limited to 'src/util_rt.c')
-rw-r--r--src/util_rt.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/util_rt.c b/src/util_rt.c
index f440f5b..a521f3a 100644
--- a/src/util_rt.c
+++ b/src/util_rt.c
@@ -471,6 +471,13 @@ void prne_uuid_tostr (const uint8_t *in, char *out) {
out[ptr] = 0;
}
+int prne_cmp_uuid_asc (const void *a, const void *b) {
+ return memcmp(a, b, 16);
+}
+int prne_cmp_uuid_desc (const void *a, const void *b) {
+ return prne_cmp_uuid_asc(a, b) * -1;
+}
+
struct timespec prne_add_timespec (
const struct timespec a,
const struct timespec b)