vlc_tls.h
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:4k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * tls.c
  3.  *****************************************************************************
  4.  * Copyright (C) 2004 VideoLAN
  5.  * $Id: httpd.c 8263 2004-07-24 09:06:58Z courmisch $
  6.  *
  7.  * Authors: Remi Denis-Courmont <courmisch@via.ecp.fr>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. #ifndef _VLC_TLS_H
  24. # define _VLC_TLS_H
  25. struct tls_t
  26. {
  27.     VLC_COMMON_MEMBERS
  28.     /* Module properties */
  29.     module_t  *p_module;
  30.     void *p_sys;
  31.     tls_server_t * (*pf_server_create) ( tls_t *, const char *, const char * );
  32. };
  33. struct tls_server_t
  34. {
  35.     tls_t *p_tls;
  36.     void *p_sys;
  37.     void (*pf_delete) ( tls_server_t * );
  38.     
  39.     int (*pf_add_CA) ( tls_server_t *, const char * );
  40.     int (*pf_add_CRL) ( tls_server_t *, const char * );
  41.     
  42.     tls_session_t * (*pf_session_prepare) ( tls_server_t * );
  43. };
  44. struct tls_session_t
  45. {
  46.     tls_t *p_tls;
  47.     tls_server_t *p_server;
  48.     void *p_sys;
  49.     tls_session_t * (*pf_handshake) ( tls_session_t *, int );
  50.     void (*pf_close) ( tls_session_t * );
  51.     int (*pf_send) ( tls_session_t *, const char *, int );
  52.     int (*pf_recv) ( tls_session_t *, char *, int );
  53. };
  54. /*****************************************************************************
  55.  * tls_ServerCreate:
  56.  *****************************************************************************
  57.  * Allocates a whole server's TLS credentials.
  58.  * Returns NULL on error.
  59.  *****************************************************************************/
  60. # define __tls_ServerCreate( a, b, c ) (((tls_t *)a)->pf_server_create (a, b, c))
  61. VLC_EXPORT( tls_server_t *, tls_ServerCreate, ( vlc_object_t *, const char *, const char * ) );
  62. /*****************************************************************************
  63.  * tls_ServerAddCA:
  64.  *****************************************************************************
  65.  * Adds one or more certificate authorities.
  66.  * Returns -1 on error, 0 on success.
  67.  *****************************************************************************/
  68. # define tls_ServerAddCA( a, b ) (((tls_server_t *)a)->pf_add_CA (a, b))
  69. /*****************************************************************************
  70.  * tls_ServerAddCRL:
  71.  *****************************************************************************
  72.  * Adds a certificates revocation list to be sent to TLS clients.
  73.  * Returns -1 on error, 0 on success.
  74.  *****************************************************************************/
  75. # define tls_ServerAddCRL( a, b ) (((tls_server_t *)a)->pf_add_CRL (a, b))
  76. # define __tls_ServerDelete( a ) (((tls_server_t *)a)->pf_delete ( a ))
  77. VLC_EXPORT( void, tls_ServerDelete, ( tls_server_t * ) );
  78. # define tls_ServerSessionPrepare( a ) (((tls_server_t *)a)->pf_session_prepare (a))
  79. # define tls_SessionHandshake( a, b ) (((tls_session_t *)a)->pf_handshake (a, b))
  80. # define tls_SessionClose( a ) (((tls_session_t *)a)->pf_close (a))
  81. # define tls_Send( a, b, c ) (((tls_session_t *)a)->pf_send (a, b, c ))
  82. # define tls_Recv( a, b, c ) (((tls_session_t *)a)->pf_recv (a, b, c ))
  83. #endif