Skip to content
Snippets Groups Projects
Verified Commit 85b69110 authored by Vladimír Čunát's avatar Vladimír Čunát
Browse files

pack_clone: new function

parent c227f558
Branches
Tags
1 merge request!550add trie from knot-dns and migrate kr_zonecut to it
......@@ -182,6 +182,25 @@ static inline int pack_obj_del(pack_t *pack, const uint8_t *obj, pack_objlen_t l
return -1;
}
/** Clone a pack into a mempool (can be NULL).
* @return NULL on allocation failure. */
static inline pack_t * pack_clone(const pack_t *src, knot_mm_t *pool)
{
pack_t *dst = mm_alloc(pool, sizeof(pack_t));
if (!dst) return dst;
pack_init(*dst);
/* Clone data only if needed */
if (!pack_head(*src)) return dst;
int ret = array_reserve_mm(*dst, src->len, kr_memreserve, pool);
if (ret < 0) {
mm_free(pool, dst);
return NULL;
}
memcpy(dst->at, src->at, src->len);
dst->len = src->len;
return dst;
}
#ifdef __cplusplus
}
#endif
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment