MCPcopy Create free account
hub / github.com/OpenSIPS/opensips / wrap_copy_and_update

Function wrap_copy_and_update

modules/compression/compression.c:491–498  ·  view source on GitHub ↗

* Memcpy and update length wrapper */

Source from the content-addressed store, hash-verified

489 * Memcpy and update length wrapper
490 */
491static inline int wrap_copy_and_update(char** dest_p, const char* src, int cpy_len,
492 int* dest_len)
493{
494 memcpy(*dest_p + *dest_len, src, cpy_len);
495 *dest_len += cpy_len;
496
497 return 0;
498}
499
500/*
501 * Function that jumps over the first row of the message

Callers 3

mc_compact_cbFunction · 0.85
mc_compress_cbFunction · 0.85
mc_decompressFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected