Import Upstream version 1.8.5
[hcoop/debian/openafs.git] / src / audit / audit-api.h
1 /*
2 * Copyright 2009, Sine Nomine Associates and others.
3 * All Rights Reserved.
4 *
5 * This software has been released under the terms of the IBM Public
6 * License. For details, see the LICENSE file in the top-level source
7 * directory or online at http://www.openafs.org/dl/license10.html
8 */
9
10 #ifndef _AUDIT_API_H
11 #define _AUDIT_API_H
12
13 struct osi_audit_ops {
14 void (*send_msg)(void);
15 void (*append_msg)(const char *format, ...);
16 int (*open_file)(const char *fileName);
17 void (*print_interface_stats)(FILE *out);
18 };
19
20 #endif /* _AUDIT_API_H */