tls: fix file description

This commit is contained in:
Rémi Denis-Courmont 2017-03-12 20:44:19 +02:00
parent a67b8e3b45
commit aab6bf548d
2 changed files with 6 additions and 3 deletions

View File

@ -1,5 +1,5 @@
/*****************************************************************************
* vlc_tls.h: Transport Layer Security API
* vlc_tls.h:
*****************************************************************************
* Copyright (C) 2004-2016 Rémi Denis-Courmont
* Copyright (C) 2005-2006 VLC authors and VideoLAN
@ -29,7 +29,8 @@
*
* Originally intended for the TLS protocol (Transport Layer Security),
* the Transport Layer Sockets now provides a generic abstraction
* for full-duplex I/O byte streams.
* for connection-oriented full-duplex I/O byte streams, such as TCP/IP sockets
* and TLS protocol sessions.
*
* @{
* \file

View File

@ -21,7 +21,9 @@
/**
* @file
* libvlc interface to the Transport Layer Security (TLS) plugins.
* Transport Layer Socket abstraction.
*
* This file implements the Transport Layer Socket (vlc_tls) abstraction.
*/
#ifdef HAVE_CONFIG_H