/
githubmirror
/
audit-userspace
Обзор
Документация
Войти
/
githubmirror
/
audit-userspace
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
docs/auparse_new_buffer.3
37 строк
843 B
Steve Grubb
Align man pages to glibc style pt2
30 июн 2025, 03:54
30 июн 2025, 03:54
b9c4482
Код
Авторство
О чём код?
.TH "AUPARSE_NEW_BUFFER" "3" "June 2025" "Red Hat" "Linux Audit API" .SH NAME auparse_new_buffer \- replace the buffer in the parser .SH "SYNOPSIS" .B #include <auparse.h> .sp .nf .BI "int auparse_new_buffer(auparse_state_t *" au, const char *" data, size_t" data_len);" .fi .TP .I au The audit parse state .TP .I data A buffer of data to give to the parser, it is .I data_len bytes long. The data is copied into the parser without modifying the original. Upon return the caller may free or reuse the data buffer. .TP .I data_len The number of bytes in .I data .SH "DESCRIPTION" .I auparse_new_buffer replaces the data that the parser works on. .I auparse_init() must have been called with a source type of AUSOURCE_BUFFER. .SH "RETURN VALUE" Returns 1 if an error occurs; otherwise, 0 for success. .SH "SEE ALSO" .BR auparse_init (3)