mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-01 10:51:12 +00:00
bde2cb6136
We do have a similar method, serving the same purpose, for TLS, but we lack one for SASL. So introduce one, in order for other modules to be able to find out, if a SASL session is active, or better said, that a SASL session exists at all. Signed-off-by: Erik Skultety <eskultet@redhat.com>
41 lines
876 B
Plaintext
41 lines
876 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;
|
|
virNetServerClientHasSASLSession;
|
|
virNetServerClientSetSASLSession;
|
|
|
|
|
|
# rpc/virnetsocket.h
|
|
virNetSocketSetSASLSession;
|
|
|
|
# Let emacs know we want case-insensitive sorting
|
|
# Local Variables:
|
|
# sort-fold-case: t
|
|
# End:
|