summaryrefslogtreecommitdiffstats
path: root/server/resty/openssl/include/bio.lua
diff options
context:
space:
mode:
authorFiete Ostkamp <Fiete.Ostkamp@telekom.de>2024-03-01 13:03:12 +0100
committerFiete Ostkamp <Fiete.Ostkamp@telekom.de>2024-03-01 13:03:12 +0100
commit97d7de9af2cb6cc3bbbcae18ada738ace7771903 (patch)
treea7c6221348272e82406bba446b6b00b1d1b8e608 /server/resty/openssl/include/bio.lua
parentbf25efd6d3ed28266ed916c0ebe9dd3a45a4affb (diff)
portal-ng pods run under root user
- switch base image from openresty to nginx-unprivileged - remove custom lua plugin code - dynamically determine dns resolver ip during container startup Issue-ID: PORTALNG-67 Change-Id: I23fb5e684dbb98a326afb00911a1f5ae78e2536d Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Diffstat (limited to 'server/resty/openssl/include/bio.lua')
-rw-r--r--server/resty/openssl/include/bio.lua13
1 files changed, 0 insertions, 13 deletions
diff --git a/server/resty/openssl/include/bio.lua b/server/resty/openssl/include/bio.lua
deleted file mode 100644
index 45297fc..0000000
--- a/server/resty/openssl/include/bio.lua
+++ /dev/null
@@ -1,13 +0,0 @@
-local ffi = require "ffi"
-
-require "resty.openssl.include.ossl_typ"
-
-ffi.cdef [[
- typedef struct bio_method_st BIO_METHOD;
- long BIO_ctrl(BIO *bp, int cmd, long larg, void *parg);
- BIO *BIO_new_mem_buf(const void *buf, int len);
- BIO *BIO_new(const BIO_METHOD *type);
- int BIO_free(BIO *a);
- const BIO_METHOD *BIO_s_mem(void);
- int BIO_read(BIO *b, void *data, int dlen);
-]]