/
githubmirror
/
audit-userspace
Обзор
Документация
Войти
/
githubmirror
/
audit-userspace
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
docs/audit_get_reply.3
23 строки
930 B
Steve Grubb
Align man pages to glibc style
30 июн 2025, 03:29
30 июн 2025, 03:29
b13faa3
Код
Авторство
О чём код?
.TH "AUDIT_GET_REPLY" "3" "Oct 2006" "Red Hat" "Linux Audit API" .SH NAME audit_get_reply \- Get the audit system's reply .SH SYNOPSIS .nf .B #include <libaudit.h> .PP .BI "int audit_get_reply(int " fd ", struct audit_reply *" rep ", reply_t " block ", int " peek );" .fi .SH "DESCRIPTION" This function gets the next data packet sent on the audit netlink socket. This function is usually called after sending a command to the audit system. \fIfd\fP should be an open file descriptor returned by audit_open. \fIrep\fP should be a data structure to put the reply in. \fIblock\fP is of type reply_t which is either: GET_REPLY_BLOCKING and GET_REPLY_NONBLOCKING. \fIpeek\fP, if non-zero, gets the data without dequeueing it from the netlink socket. .SH "RETURN VALUE" This function returns \-errno on error, 0 if error response received, and positive value on success. .SH "SEE ALSO" .BR audit_open (3). .SH AUTHOR Steve Grubb