diff options
| author | Brent Cook <bcook@openbsd.org> | 2016-09-04 08:58:30 -0500 |
|---|---|---|
| committer | Brent Cook <bcook@openbsd.org> | 2016-09-04 08:58:30 -0500 |
| commit | 5532f007d3713e9e790b7577e5f79acd66802bf0 (patch) | |
| tree | 5fab051ef21d39317d2374737e706d5b9f2a87e8 | |
| parent | 6f24864a7301efa60a5722e08172f9554653ede6 (diff) | |
| parent | a69063be1023217548046b9c8615293b88f2ad19 (diff) | |
| download | portable-5532f007d3713e9e790b7577e5f79acd66802bf0.tar.gz portable-5532f007d3713e9e790b7577e5f79acd66802bf0.tar.bz2 portable-5532f007d3713e9e790b7577e5f79acd66802bf0.zip | |
Land #203, add libtls callback API
| -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 54ae953..2377685 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 |
