diff options
| author | Tobias Pape <tobias@netshed.de> | 2016-06-28 03:29:54 +0200 |
|---|---|---|
| committer | Tobias Pape <tobias@netshed.de> | 2016-06-28 03:29:54 +0200 |
| commit | a69063be1023217548046b9c8615293b88f2ad19 (patch) | |
| tree | 18cc4690f81ef0dd3808713a8a5de4f2723b7060 | |
| parent | ddb22413ed761294b04365b20eae1f6667372cf6 (diff) | |
| download | portable-a69063be1023217548046b9c8615293b88f2ad19.tar.gz portable-a69063be1023217548046b9c8615293b88f2ad19.tar.bz2 portable-a69063be1023217548046b9c8615293b88f2ad19.zip | |
Portable code part for callbacks in accept/connect
see https://github.com/libressl-portable/openbsd/pull/64
| -rw-r--r-- | libtls-standalone/src/Makefile.am | 1 | ||||
| -rw-r--r-- | tls/CMakeLists.txt | 1 | ||||
| -rw-r--r-- | tls/Makefile.am | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/libtls-standalone/src/Makefile.am b/libtls-standalone/src/Makefile.am index 7844525..5f8f55f 100644 --- a/libtls-standalone/src/Makefile.am +++ b/libtls-standalone/src/Makefile.am | |||
| @@ -8,6 +8,7 @@ libtls_la_LIBADD += $(top_builddir)/compat/libcompat.la | |||
| 8 | libtls_la_LIBADD += $(top_builddir)/compat/libcompatnoopt.la | 8 | libtls_la_LIBADD += $(top_builddir)/compat/libcompatnoopt.la |
| 9 | 9 | ||
| 10 | libtls_la_SOURCES = tls.c | 10 | libtls_la_SOURCES = tls.c |
| 11 | libtls_la_SOURCES += tls_bio_cb.c | ||
| 11 | libtls_la_SOURCES += tls_client.c | 12 | libtls_la_SOURCES += tls_client.c |
| 12 | libtls_la_SOURCES += tls_config.c | 13 | libtls_la_SOURCES += tls_config.c |
| 13 | libtls_la_SOURCES += tls_server.c | 14 | libtls_la_SOURCES += tls_server.c |
diff --git a/tls/CMakeLists.txt b/tls/CMakeLists.txt index 53c8be7..8079cae 100644 --- a/tls/CMakeLists.txt +++ b/tls/CMakeLists.txt | |||
| @@ -7,6 +7,7 @@ include_directories( | |||
| 7 | set( | 7 | set( |
| 8 | TLS_SRC | 8 | TLS_SRC |
| 9 | tls.c | 9 | tls.c |
| 10 | tls_bio_cb.c | ||
| 10 | tls_client.c | 11 | tls_client.c |
| 11 | tls_config.c | 12 | tls_config.c |
| 12 | tls_conninfo.c | 13 | tls_conninfo.c |
diff --git a/tls/Makefile.am b/tls/Makefile.am index b7dd4b0..8350e4d 100644 --- a/tls/Makefile.am +++ b/tls/Makefile.am | |||
| @@ -19,6 +19,7 @@ endif | |||
| 19 | 19 | ||
| 20 | libtls_la_SOURCES = tls.c | 20 | libtls_la_SOURCES = tls.c |
| 21 | libtls_la_SOURCES += tls_client.c | 21 | libtls_la_SOURCES += tls_client.c |
| 22 | libtls_la_SOURCES += tls_bio_cb.c | ||
| 22 | libtls_la_SOURCES += tls_config.c | 23 | libtls_la_SOURCES += tls_config.c |
| 23 | libtls_la_SOURCES += tls_conninfo.c | 24 | libtls_la_SOURCES += tls_conninfo.c |
| 24 | libtls_la_SOURCES += tls_server.c | 25 | libtls_la_SOURCES += tls_server.c |
