| 1248 | } |
| 1249 | |
| 1250 | int pn_data_format(pn_data_t *data, char *bytes, size_t *size) |
| 1251 | { |
| 1252 | pn_fixed_string_t str = pn_fixed_string(bytes, *size); |
| 1253 | pn_data_inspect(data, &str); |
| 1254 | pn_fixed_string_terminate(&str); |
| 1255 | *size = str.position; |
| 1256 | return 0; |
| 1257 | } |
| 1258 | |
| 1259 | static size_t pni_data_id(pn_data_t *data, pni_node_t *node) |
| 1260 | { |
nothing calls this directly
no test coverage detected