tls_select.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. * $Id$
  3. *
  4. * TLS module - select interface
  5. *
  6. * Copyright (C) 2001-2003 FhG FOKUS
  7. * Copyright (C) 2004,2005 Free Software Foundation, Inc.
  8. * Copyright (C) 2005,2006 iptelorg GmbH
  9. * Copyright (C) 2006 enum.at
  10. *
  11. * This file is part of sip-router, a free SIP server.
  12. *
  13. * sip-router is free software; you can redistribute it and/or modify
  14. * it under the terms of the GNU General Public License as published by
  15. * the Free Software Foundation; either version 2 of the License, or
  16. * (at your option) any later version
  17. *
  18. * For a license to use the sip-router software under conditions
  19. * other than those described here, or to purchase support for this
  20. * software, please contact iptel.org by e-mail at the following addresses:
  21. * [email protected]
  22. *
  23. * sip-router is distributed in the hope that it will be useful,
  24. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  25. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  26. * GNU General Public License for more details.
  27. *
  28. * You should have received a copy of the GNU General Public License
  29. * along with this program; if not, write to the Free Software
  30. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  31. */
  32. /*!
  33. * \file
  34. * \brief SIP-router TLS support :: select interface
  35. * \ingroup tls
  36. * Module: \ref tls
  37. */
  38. #ifndef _TLS_SELECT_H
  39. #define _TLS_SELECT_H
  40. #include "../../select.h"
  41. #include "../../pvar.h"
  42. extern select_row_t tls_sel[];
  43. extern pv_export_t tls_pv[];
  44. #endif /* _TLS_SELECT_H */