| 50 | *indirect_pool; |
| 51 | |
| 52 | static inline void |
| 53 | hex_to_str(uint8_t *hex, uint16_t len, char *str) |
| 54 | { |
| 55 | int i; |
| 56 | |
| 57 | for (i = 0; i < len; i++) { |
| 58 | sprintf(str, "%02x", hex[i]); |
| 59 | str += 2; |
| 60 | } |
| 61 | *str = 0; |
| 62 | } |
| 63 | |
| 64 | static int |
| 65 | setup_buf_pool(void) |
no test coverage detected