1AUPARSE_NEXT_RECORD(3) Linux Audit API AUPARSE_NEXT_RECORD(3)
2
3
4
6 auparse_next_record - move record cursor
7
9 #include <auparse.h>
10
11 int auparse_next_record(auparse_state_t *au);
12
13
15 auparse_next_record will move the internal library cursors to point to
16 the next record of the current event. You should not call this function
17 from a feed interface callback function. Doing so will deadlock the
18 code. In that scenario, you should check the number of records in the
19 current event with auparse_get_num_records and only call this if there
20 are more records.
21
22
24 Returns -1 if an error occurs, 0 if no more records in current event,
25 or 1 for success.
26
27
29 auparse_next_event(3),auparse_get_num_records(3).
30
31
33 Steve Grubb
34
35
36
37Red Hat Feb 2007 AUPARSE_NEXT_RECORD(3)