aboutsummaryrefslogtreecommitdiffstats
path: root/src/_cffi_src/openssl/bio.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/_cffi_src/openssl/bio.py')
-rw-r--r--src/_cffi_src/openssl/bio.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/_cffi_src/openssl/bio.py b/src/_cffi_src/openssl/bio.py
index 2d9659e1..d3dd6690 100644
--- a/src/_cffi_src/openssl/bio.py
+++ b/src/_cffi_src/openssl/bio.py
@@ -36,6 +36,13 @@ static const int BIO_CTRL_INFO;
static const int BIO_CTRL_GET;
static const int BIO_CTRL_PENDING;
static const int BIO_CTRL_WPENDING;
+static const int BIO_CTRL_DGRAM_SET_CONNECTED;
+static const int BIO_CTRL_DGRAM_SET_RECV_TIMEOUT;
+static const int BIO_CTRL_DGRAM_GET_RECV_TIMEOUT;
+static const int BIO_CTRL_DGRAM_SET_SEND_TIMEOUT;
+static const int BIO_CTRL_DGRAM_GET_SEND_TIMEOUT;
+static const int BIO_CTRL_DGRAM_GET_RECV_TIMER_EXP;
+static const int BIO_CTRL_DGRAM_GET_SEND_TIMER_EXP;
static const int BIO_C_FILE_SEEK;
static const int BIO_C_FILE_TELL;
static const int BIO_TYPE_NONE;
@@ -68,6 +75,7 @@ BIO *BIO_new_file(const char *, const char *);
BIO *BIO_new_fp(FILE *, int);
BIO *BIO_new_fd(int, int);
BIO *BIO_new_socket(int, int);
+BIO *BIO_new_dgram(int, int);
long BIO_ctrl(BIO *, int, long, void *);
long BIO_callback_ctrl(
BIO *,
@@ -91,6 +99,7 @@ BIO_METHOD *BIO_s_mem(void);
BIO_METHOD *BIO_s_file(void);
BIO_METHOD *BIO_s_fd(void);
BIO_METHOD *BIO_s_socket(void);
+BIO_METHOD *BIO_s_datagram(void);
BIO_METHOD *BIO_s_null(void);
BIO_METHOD *BIO_f_null(void);
BIO_METHOD *BIO_f_buffer(void);