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

Function bencode_dictionary_add_integer

modules/rtpengine/bencode.h:417–419  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

415}
416
417static inline bencode_item_t *bencode_dictionary_add_integer(bencode_item_t *dict, const char *key, long long int val) {
418 return bencode_dictionary_add(dict, key, bencode_integer(bencode_item_buffer(dict), val));
419}
420
421static inline bencode_item_t *bencode_dictionary_add_dictionary(bencode_item_t *dict, const char *key) {
422 return bencode_dictionary_add(dict, key, bencode_dictionary(bencode_item_buffer(dict)));

Callers 1

parse_flagsFunction · 0.85

Calls 3

bencode_dictionary_addFunction · 0.85
bencode_integerFunction · 0.85
bencode_item_bufferFunction · 0.85

Tested by

no test coverage detected