summaryrefslogtreecommitdiff
path: root/libavformat/allformats.c
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2011-02-06 00:19:49 +0200
committerMartin Storsjö <martin@martin.st>2011-11-05 12:09:30 +0200
commit558d192d23bf76a476c0d84d212611e529c64529 (patch)
tree45a58b6119fca5b9753401d879714f897d6d2272 /libavformat/allformats.c
parent1606e551ff4ace23da8a372ebb1147da36566372 (diff)
avformat: Add the tls protocol, using OpenSSL or gnutls
Note, this protocol doesn't yet check verify the server certificate against a local database of trusted CA root certificates. Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/allformats.c')
-rw-r--r--libavformat/allformats.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/allformats.c b/libavformat/allformats.c
index 8e89b2f4ff..d078a154dc 100644
--- a/libavformat/allformats.c
+++ b/libavformat/allformats.c
@@ -254,5 +254,6 @@ void av_register_all(void)
#endif
REGISTER_PROTOCOL (RTP, rtp);
REGISTER_PROTOCOL (TCP, tcp);
+ REGISTER_PROTOCOL (TLS, tls);
REGISTER_PROTOCOL (UDP, udp);
}