From 4c8d86eb18e2fc8fcd5819a33599422454fdeff8 Mon Sep 17 00:00:00 2001 From: Hendrik Leppkes Date: Sun, 4 Oct 2015 14:48:49 +0200 Subject: avformat: implement SChannel SSP TLS protocol This implementation does not support TLS listen sockets and loading CA/Certs from files. The Windows API does not support loading PEM certs, and would either require a manual loader or instead be limited to loading Windows PFX certificates TLS listen sockets would have to be implemented quite separately, as many of the APIs are different for server-mode (as opposed to client mode). --- libavformat/tls.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/tls.h') diff --git a/libavformat/tls.h b/libavformat/tls.h index 2a36f34f18..0326ef7924 100644 --- a/libavformat/tls.h +++ b/libavformat/tls.h @@ -26,7 +26,7 @@ #include "url.h" #include "libavutil/opt.h" -#define CONFIG_TLS_PROTOCOL (CONFIG_TLS_GNUTLS_PROTOCOL | CONFIG_TLS_OPENSSL_PROTOCOL | CONFIG_TLS_SECURETRANSPORT_PROTOCOL) +#define CONFIG_TLS_PROTOCOL (CONFIG_TLS_GNUTLS_PROTOCOL | CONFIG_TLS_OPENSSL_PROTOCOL | CONFIG_TLS_SECURETRANSPORT_PROTOCOL | CONFIG_TLS_SCHANNEL_PROTOCOL) typedef struct TLSShared { char *ca_file; -- cgit v1.2.3