| 77 | } |
| 78 | |
| 79 | static void __bencode_container_init(bencode_item_t *cont) { |
| 80 | cont->iov[0].iov_len = 1; |
| 81 | cont->iov[1].iov_base = "e"; |
| 82 | cont->iov[1].iov_len = 1; |
| 83 | cont->iov_cnt = 2; |
| 84 | cont->str_len = 2; |
| 85 | } |
| 86 | |
| 87 | static void __bencode_dictionary_init(bencode_item_t *dict) { |
| 88 | dict->type = BENCODE_DICTIONARY; |
no outgoing calls
no test coverage detected