diff options
Diffstat (limited to 'src/microspdy/daemon.c')
-rw-r--r-- | src/microspdy/daemon.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/microspdy/daemon.c b/src/microspdy/daemon.c index 4c59c2cc..ee7165ad 100644 --- a/src/microspdy/daemon.c +++ b/src/microspdy/daemon.c | |||
@@ -26,7 +26,7 @@ | |||
26 | #include "structures.h" | 26 | #include "structures.h" |
27 | #include "internal.h" | 27 | #include "internal.h" |
28 | #include "session.h" | 28 | #include "session.h" |
29 | #include "tls.h" | 29 | #include "io.h" |
30 | 30 | ||
31 | 31 | ||
32 | /** | 32 | /** |
@@ -191,8 +191,8 @@ SPDYF_start_daemon_va (uint16_t port, | |||
191 | memset (daemon, 0, sizeof (struct SPDY_Daemon)); | 191 | memset (daemon, 0, sizeof (struct SPDY_Daemon)); |
192 | daemon->socket_fd = -1; | 192 | daemon->socket_fd = -1; |
193 | daemon->port = port; | 193 | daemon->port = port; |
194 | daemon->fio_init = &SPDYF_tls_init; | 194 | daemon->fio_init = &SPDYF_openssl_init; |
195 | daemon->fio_deinit = &SPDYF_tls_deinit; | 195 | daemon->fio_deinit = &SPDYF_openssl_deinit; |
196 | if (NULL == (daemon->certfile = strdup (certfile))) | 196 | if (NULL == (daemon->certfile = strdup (certfile))) |
197 | { | 197 | { |
198 | SPDYF_DEBUG("str"); | 198 | SPDYF_DEBUG("str"); |