mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-09 06:50:22 +00:00
13 lines
441 B
D
13 lines
441 B
D
|
provider libvirtd {
|
||
|
probe client_connect(int fd, int readonly);
|
||
|
probe client_disconnect(int fd);
|
||
|
|
||
|
probe client_auth_allow(int fd, int authtype, const char *identity);
|
||
|
probe client_auth_deny(int fd, int authtype, const char *identity);
|
||
|
probe client_auth_fail(int fd, int authtype);
|
||
|
|
||
|
probe client_tls_allow(int fd, const char *x509dname);
|
||
|
probe client_tls_deny(int fd, const char *x509dname);
|
||
|
probe client_tls_fail(int fd);
|
||
|
};
|