1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
/****************************************************************
* *
* Copyright 2013 Fidelity Information Services, Inc *
* *
* This source code contains the intellectual property *
* of its copyright holder(s), and is made available *
* under a license. If you do not know the terms of *
* the license, please stop and do not read further. *
* *
****************************************************************/
/* Any time a new function gets added to the GT.M SSL/TLS interface, add the corresponding entry here. This file is included in
* `gtm_tls_loadlibrary', by appropriately, defining TLS_DEF, to generate necessary string literals and function pointers which
* is used to `dlsym' symbols from the SSL/TLS shared library.
*/
TLS_DEF(gtm_tls_get_error)
TLS_DEF(gtm_tls_errno)
TLS_DEF(gtm_tls_init)
TLS_DEF(gtm_tls_prefetch_passwd)
TLS_DEF(gtm_tls_socket)
TLS_DEF(gtm_tls_connect)
TLS_DEF(gtm_tls_accept)
TLS_DEF(gtm_tls_renegotiate)
TLS_DEF(gtm_tls_get_conn_info)
TLS_DEF(gtm_tls_send)
TLS_DEF(gtm_tls_recv)
TLS_DEF(gtm_tls_cachedbytes)
TLS_DEF(gtm_tls_socket_close)
TLS_DEF(gtm_tls_session_close)
TLS_DEF(gtm_tls_fini)
|