]> git.proxmox.com Git - mirror_qemu.git/blobdiff - osdep.h
vnc: disable VNC password authentication (security type 2) when in FIPS mode
[mirror_qemu.git] / osdep.h
diff --git a/osdep.h b/osdep.h
index 1e15a4b91cd109c3ef92557cbe4c15197407ee89..d4b887d542f501a834fc3bc2ddd5b4c0d62f13d2 100644 (file)
--- a/osdep.h
+++ b/osdep.h
@@ -3,6 +3,7 @@
 
 #include <stdarg.h>
 #include <stddef.h>
+#include <stdbool.h>
 #ifdef __OpenBSD__
 #include <sys/types.h>
 #include <sys/signal.h>
@@ -154,4 +155,7 @@ void qemu_set_cloexec(int fd);
 void qemu_set_version(const char *);
 const char *qemu_get_version(void);
 
+void fips_set_state(bool requested);
+bool fips_get_state(void);
+
 #endif