pub unsafe extern "C" fn aeron_archive_recording_pos_get_source_identity(
    counters_reader: *mut aeron_counters_reader_t,
    counter_id: i32,
    dst: *const c_char,
    len_p: *mut usize,
) -> c_int
Expand description

Get the source identity for the recording.

See source_identity in aeron_image_constants_t.

@param counters_reader an aeron_counters_reader_t to search within @param counter_id the counter id of an active recording @param dst a destination buffer into which the source identity will be written @param len_p a pointer to a size_t that initially indicates the length of the dst buffer. After the function return successfully, len_p will be set to the length of the source identity string in dst @return 0 for success, -1 for failure