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

Function bencode_dictionary_get

modules/rtpengine/bencode.h:441–445  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

439}
440
441static inline bencode_item_t *bencode_dictionary_get(bencode_item_t *dict, const char *key) {
442 if (!key)
443 return NULL;
444 return bencode_dictionary_get_len(dict, key, strlen(key));
445}
446
447static inline char *bencode_dictionary_get_string(bencode_item_t *dict, const char *key, int *len) {
448 bencode_item_t *val;

Calls 1

Tested by

no test coverage detected