aboutsummaryrefslogtreecommitdiffstats
path: root/src/libtls/tls_socket.h
diff options
context:
space:
mode:
authorMartin Willi <martin@revosec.ch>2011-12-31 01:41:56 +0100
committerMartin Willi <martin@revosec.ch>2011-12-31 13:14:49 +0100
commit6a5c86b7ada9dd6a57290f228fd06b20cdf7011b (patch)
tree5879b5f15615624aef0c62d0c0230b6ca9bdf4e3 /src/libtls/tls_socket.h
parentca5767621ba5491b2a2a0c011178249124f32cf7 (diff)
downloadstrongswan-6a5c86b7ada9dd6a57290f228fd06b20cdf7011b.tar.bz2
strongswan-6a5c86b7ada9dd6a57290f228fd06b20cdf7011b.tar.xz
Implemented TLS session resumption both as client and as server
Diffstat (limited to 'src/libtls/tls_socket.h')
-rw-r--r--src/libtls/tls_socket.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libtls/tls_socket.h b/src/libtls/tls_socket.h
index 413380716..9f0e9643b 100644
--- a/src/libtls/tls_socket.h
+++ b/src/libtls/tls_socket.h
@@ -74,9 +74,10 @@ struct tls_socket_t {
* @param server server identity
* @param peer client identity, NULL for no client authentication
* @param fd socket to read/write from
+ * @param cache session cache to use, or NULL
* @return TLS socket wrapper
*/
tls_socket_t *tls_socket_create(bool is_server, identification_t *server,
- identification_t *peer, int fd);
+ identification_t *peer, int fd, tls_cache_t *cache);
#endif /** TLS_SOCKET_H_ @}*/