mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-02 11:21: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>
40 lines
842 B
Plaintext
40 lines
842 B
Plaintext
#
|
|
# SASL-specific symbols
|
|
#
|
|
|
|
# rpc/virnetclient.h
|
|
virNetClientSetSASLSession;
|
|
|
|
# rpc/virnetsaslcontext.h
|
|
virNetSASLContextCheckIdentity;
|
|
virNetSASLContextNewClient;
|
|
virNetSASLContextNewServer;
|
|
virNetSASLSessionClientStart;
|
|
virNetSASLSessionClientStep;
|
|
virNetSASLSessionDecode;
|
|
virNetSASLSessionEncode;
|
|
virNetSASLSessionExtKeySize;
|
|
virNetSASLSessionGetIdentity;
|
|
virNetSASLSessionGetKeySize;
|
|
virNetSASLSessionGetMaxBufSize;
|
|
virNetSASLSessionListMechanisms;
|
|
virNetSASLSessionNewClient;
|
|
virNetSASLSessionNewServer;
|
|
virNetSASLSessionSecProps;
|
|
virNetSASLSessionServerStart;
|
|
virNetSASLSessionServerStep;
|
|
|
|
|
|
# rpc/virnetserverclient.h
|
|
virNetServerClientGetSASLSession;
|
|
virNetServerClientSetSASLSession;
|
|
|
|
|
|
# rpc/virnetsocket.h
|
|
virNetSocketSetSASLSession;
|
|
|
|
# Let emacs know we want case-insensitive sorting
|
|
# Local Variables:
|
|
# sort-fold-case: t
|
|
# End:
|