mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-01 10:51:12 +00:00
51997e50fa
A socket object has various pieces of security data associated with it, such as the SELinux context, the SASL username and the x509 distinguished name. Add new APIs to virNetServerClient and related modules to access this data. Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
49 lines
907 B
Plaintext
49 lines
907 B
Plaintext
#
|
|
# GNUTLS-specific symbols
|
|
#
|
|
|
|
# rpc/virnetclient.h
|
|
virNetClientGetTLSKeySize;
|
|
virNetClientSetTLSSession;
|
|
|
|
|
|
# rpc/virnetserver.h
|
|
virNetServerSetTLSContext;
|
|
|
|
|
|
# rpc/virnetserverclient.h
|
|
virNetServerClientGetTLSKeySize;
|
|
virNetServerClientGetTLSSession;
|
|
virNetServerClientHasTLSSession;
|
|
|
|
|
|
# rpc/virnetserverservice.h
|
|
virNetServerServiceGetTLSContext;
|
|
|
|
|
|
# rpc/virnetsocket.h
|
|
virNetSocketSetTLSSession;
|
|
|
|
|
|
# rpc/virnettlscontext.h
|
|
virNetTLSContextCheckCertificate;
|
|
virNetTLSContextNewClient;
|
|
virNetTLSContextNewClientPath;
|
|
virNetTLSContextNewServer;
|
|
virNetTLSContextNewServerPath;
|
|
virNetTLSInit;
|
|
virNetTLSSessionGetHandshakeStatus;
|
|
virNetTLSSessionGetKeySize;
|
|
virNetTLSSessionGetX509DName;
|
|
virNetTLSSessionHandshake;
|
|
virNetTLSSessionNew;
|
|
virNetTLSSessionRead;
|
|
virNetTLSSessionSetIOCallbacks;
|
|
virNetTLSSessionWrite;
|
|
|
|
|
|
# Let emacs know we want case-insensitive sorting
|
|
# Local Variables:
|
|
# sort-fold-case: t
|
|
# End:
|