summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/bio/bio.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/bio/bio.h')
-rw-r--r--src/lib/libcrypto/bio/bio.h70
1 files changed, 1 insertions, 69 deletions
diff --git a/src/lib/libcrypto/bio/bio.h b/src/lib/libcrypto/bio/bio.h
index 05699ab212..ab47abcf14 100644
--- a/src/lib/libcrypto/bio/bio.h
+++ b/src/lib/libcrypto/bio/bio.h
@@ -68,14 +68,6 @@
68 68
69#include <openssl/crypto.h> 69#include <openssl/crypto.h>
70 70
71#ifndef OPENSSL_NO_SCTP
72# ifndef OPENSSL_SYS_VMS
73# include <stdint.h>
74# else
75# include <inttypes.h>
76# endif
77#endif
78
79#ifdef __cplusplus 71#ifdef __cplusplus
80extern "C" { 72extern "C" {
81#endif 73#endif
@@ -103,9 +95,6 @@ extern "C" {
103#define BIO_TYPE_BIO (19|0x0400) /* (half a) BIO pair */ 95#define BIO_TYPE_BIO (19|0x0400) /* (half a) BIO pair */
104#define BIO_TYPE_LINEBUFFER (20|0x0200) /* filter */ 96#define BIO_TYPE_LINEBUFFER (20|0x0200) /* filter */
105#define BIO_TYPE_DGRAM (21|0x0400|0x0100) 97#define BIO_TYPE_DGRAM (21|0x0400|0x0100)
106#ifndef OPENSSL_NO_SCTP
107#define BIO_TYPE_DGRAM_SCTP (24|0x0400|0x0100)
108#endif
109#define BIO_TYPE_ASN1 (22|0x0200) /* filter */ 98#define BIO_TYPE_ASN1 (22|0x0200) /* filter */
110#define BIO_TYPE_COMP (23|0x0200) /* filter */ 99#define BIO_TYPE_COMP (23|0x0200) /* filter */
111 100
@@ -157,7 +146,6 @@ extern "C" {
157/* #endif */ 146/* #endif */
158 147
159#define BIO_CTRL_DGRAM_QUERY_MTU 40 /* as kernel for current MTU */ 148#define BIO_CTRL_DGRAM_QUERY_MTU 40 /* as kernel for current MTU */
160#define BIO_CTRL_DGRAM_GET_FALLBACK_MTU 47
161#define BIO_CTRL_DGRAM_GET_MTU 41 /* get cached value for MTU */ 149#define BIO_CTRL_DGRAM_GET_MTU 41 /* get cached value for MTU */
162#define BIO_CTRL_DGRAM_SET_MTU 42 /* set cached value for 150#define BIO_CTRL_DGRAM_SET_MTU 42 /* set cached value for
163 * MTU. want to use this 151 * MTU. want to use this
@@ -173,22 +161,7 @@ extern "C" {
173#define BIO_CTRL_DGRAM_SET_PEER 44 /* Destination for the data */ 161#define BIO_CTRL_DGRAM_SET_PEER 44 /* Destination for the data */
174 162
175#define BIO_CTRL_DGRAM_SET_NEXT_TIMEOUT 45 /* Next DTLS handshake timeout to 163#define BIO_CTRL_DGRAM_SET_NEXT_TIMEOUT 45 /* Next DTLS handshake timeout to
176 * adjust socket timeouts */ 164 * adjust socket timeouts */
177
178#ifndef OPENSSL_NO_SCTP
179/* SCTP stuff */
180#define BIO_CTRL_DGRAM_SCTP_SET_IN_HANDSHAKE 50
181#define BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY 51
182#define BIO_CTRL_DGRAM_SCTP_NEXT_AUTH_KEY 52
183#define BIO_CTRL_DGRAM_SCTP_AUTH_CCS_RCVD 53
184#define BIO_CTRL_DGRAM_SCTP_GET_SNDINFO 60
185#define BIO_CTRL_DGRAM_SCTP_SET_SNDINFO 61
186#define BIO_CTRL_DGRAM_SCTP_GET_RCVINFO 62
187#define BIO_CTRL_DGRAM_SCTP_SET_RCVINFO 63
188#define BIO_CTRL_DGRAM_SCTP_GET_PRINFO 64
189#define BIO_CTRL_DGRAM_SCTP_SET_PRINFO 65
190#define BIO_CTRL_DGRAM_SCTP_SAVE_SHUTDOWN 70
191#endif
192 165
193/* modifiers */ 166/* modifiers */
194#define BIO_FP_READ 0x02 167#define BIO_FP_READ 0x02
@@ -358,34 +331,6 @@ typedef struct bio_f_buffer_ctx_struct
358/* Prefix and suffix callback in ASN1 BIO */ 331/* Prefix and suffix callback in ASN1 BIO */
359typedef int asn1_ps_func(BIO *b, unsigned char **pbuf, int *plen, void *parg); 332typedef int asn1_ps_func(BIO *b, unsigned char **pbuf, int *plen, void *parg);
360 333
361#ifndef OPENSSL_NO_SCTP
362/* SCTP parameter structs */
363struct bio_dgram_sctp_sndinfo
364 {
365 uint16_t snd_sid;
366 uint16_t snd_flags;
367 uint32_t snd_ppid;
368 uint32_t snd_context;
369 };
370
371struct bio_dgram_sctp_rcvinfo
372 {
373 uint16_t rcv_sid;
374 uint16_t rcv_ssn;
375 uint16_t rcv_flags;
376 uint32_t rcv_ppid;
377 uint32_t rcv_tsn;
378 uint32_t rcv_cumtsn;
379 uint32_t rcv_context;
380 };
381
382struct bio_dgram_sctp_prinfo
383 {
384 uint16_t pr_policy;
385 uint32_t pr_value;
386 };
387#endif
388
389/* connect BIO stuff */ 334/* connect BIO stuff */
390#define BIO_CONN_S_BEFORE 1 335#define BIO_CONN_S_BEFORE 1
391#define BIO_CONN_S_GET_IP 2 336#define BIO_CONN_S_GET_IP 2
@@ -683,9 +628,6 @@ BIO_METHOD *BIO_f_linebuffer(void);
683BIO_METHOD *BIO_f_nbio_test(void); 628BIO_METHOD *BIO_f_nbio_test(void);
684#ifndef OPENSSL_NO_DGRAM 629#ifndef OPENSSL_NO_DGRAM
685BIO_METHOD *BIO_s_datagram(void); 630BIO_METHOD *BIO_s_datagram(void);
686#ifndef OPENSSL_NO_SCTP
687BIO_METHOD *BIO_s_datagram_sctp(void);
688#endif
689#endif 631#endif
690 632
691/* BIO_METHOD *BIO_f_ber(void); */ 633/* BIO_METHOD *BIO_f_ber(void); */
@@ -728,15 +670,6 @@ int BIO_set_tcp_ndelay(int sock,int turn_on);
728 670
729BIO *BIO_new_socket(int sock, int close_flag); 671BIO *BIO_new_socket(int sock, int close_flag);
730BIO *BIO_new_dgram(int fd, int close_flag); 672BIO *BIO_new_dgram(int fd, int close_flag);
731#ifndef OPENSSL_NO_SCTP
732BIO *BIO_new_dgram_sctp(int fd, int close_flag);
733int BIO_dgram_is_sctp(BIO *bio);
734int BIO_dgram_sctp_notification_cb(BIO *b,
735 void (*handle_notifications)(BIO *bio, void *context, void *buf),
736 void *context);
737int BIO_dgram_sctp_wait_for_dry(BIO *b);
738int BIO_dgram_sctp_msg_waiting(BIO *b);
739#endif
740BIO *BIO_new_fd(int fd, int close_flag); 673BIO *BIO_new_fd(int fd, int close_flag);
741BIO *BIO_new_connect(char *host_port); 674BIO *BIO_new_connect(char *host_port);
742BIO *BIO_new_accept(char *host_port); 675BIO *BIO_new_accept(char *host_port);
@@ -801,7 +734,6 @@ void ERR_load_BIO_strings(void);
801#define BIO_F_BUFFER_CTRL 114 734#define BIO_F_BUFFER_CTRL 114
802#define BIO_F_CONN_CTRL 127 735#define BIO_F_CONN_CTRL 127
803#define BIO_F_CONN_STATE 115 736#define BIO_F_CONN_STATE 115
804#define BIO_F_DGRAM_SCTP_READ 132
805#define BIO_F_FILE_CTRL 116 737#define BIO_F_FILE_CTRL 116
806#define BIO_F_FILE_READ 130 738#define BIO_F_FILE_READ 130
807#define BIO_F_LINEBUFFER_CTRL 129 739#define BIO_F_LINEBUFFER_CTRL 129