/third_party/openssl/doc/man3/ |
D | BIO_ADDR.pod | 5 BIO_ADDR, BIO_ADDR_new, BIO_ADDR_clear, BIO_ADDR_free, BIO_ADDR_rawmake, 8 BIO_ADDR_path_string - BIO_ADDR routines 15 typedef union bio_addr_st BIO_ADDR; 17 BIO_ADDR *BIO_ADDR_new(void); 18 void BIO_ADDR_free(BIO_ADDR *); 19 void BIO_ADDR_clear(BIO_ADDR *ap); 20 int BIO_ADDR_rawmake(BIO_ADDR *ap, int family, 22 int BIO_ADDR_family(const BIO_ADDR *ap); 23 int BIO_ADDR_rawaddress(const BIO_ADDR *ap, void *p, size_t *l); 24 unsigned short BIO_ADDR_rawport(const BIO_ADDR *ap); [all …]
|
D | BIO_connect.pod | 13 int BIO_bind(int sock, const BIO_ADDR *addr, int options); 14 int BIO_connect(int sock, const BIO_ADDR *addr, int options); 15 int BIO_listen(int sock, const BIO_ADDR *addr, int options); 16 int BIO_accept_ex(int accept_sock, BIO_ADDR *peer, int options); 100 L<BIO_ADDR(3)>
|
D | BIO_s_connect.pod | 21 long BIO_set_conn_address(BIO *b, BIO_ADDR *addr); 25 const BIO_ADDR *BIO_get_conn_address(BIO *b); 72 a BIO_ADDR(3ssl). 83 BIO_get_conn_address() returns the address information as a BIO_ADDR. 196 L<BIO_ADDR(3)>
|
D | BIO_ADDRINFO.pod | 34 const BIO_ADDR *BIO_ADDRINFO_address(const BIO_ADDRINFO *bai); 75 BIO_ADDRINFO_address() returns the underlying B<BIO_ADDR>
|
D | DTLSv1_listen.pod | 14 int DTLSv1_listen(SSL *ssl, BIO_ADDR *peer); 60 Additionally, for DTLSv1_listen(), the B<BIO_ADDR> pointed to by B<peer> will be 62 BIO is unable to obtain the B<BIO_ADDR> of the peer (for example because the BIO
|
/third_party/openssl/crypto/bio/ |
D | b_addr.c | 42 BIO_ADDR *BIO_ADDR_new(void) in BIO_ADDR_new() 44 BIO_ADDR *ret = OPENSSL_zalloc(sizeof(*ret)); in BIO_ADDR_new() 55 void BIO_ADDR_free(BIO_ADDR *ap) in BIO_ADDR_free() 60 void BIO_ADDR_clear(BIO_ADDR *ap) in BIO_ADDR_clear() 70 int BIO_ADDR_make(BIO_ADDR *ap, const struct sockaddr *sa) in BIO_ADDR_make() 92 int BIO_ADDR_rawmake(BIO_ADDR *ap, int family, in BIO_ADDR_rawmake() 130 int BIO_ADDR_family(const BIO_ADDR *ap) in BIO_ADDR_family() 135 int BIO_ADDR_rawaddress(const BIO_ADDR *ap, void *p, size_t *l) in BIO_ADDR_rawaddress() 169 unsigned short BIO_ADDR_rawport(const BIO_ADDR *ap) in BIO_ADDR_rawport() 193 static int addr_strings(const BIO_ADDR *ap, int numeric, in addr_strings() [all …]
|
D | b_sock2.c | 77 int BIO_connect(int sock, const BIO_ADDR *addr, int options) in BIO_connect() 134 int BIO_bind(int sock, const BIO_ADDR *addr, int options) in BIO_bind() 206 int BIO_listen(int sock, const BIO_ADDR *addr, int options) in BIO_listen() 282 int BIO_accept_ex(int accept_sock, BIO_ADDR *addr_, int options) in BIO_accept_ex() 286 BIO_ADDR locaddr; in BIO_accept_ex() 287 BIO_ADDR *addr = addr_ == NULL ? &locaddr : addr_; in BIO_accept_ex()
|
D | bio_local.h | 143 int BIO_ADDR_make(BIO_ADDR *ap, const struct sockaddr *sa); 144 const struct sockaddr *BIO_ADDR_sockaddr(const BIO_ADDR *ap); 145 struct sockaddr *BIO_ADDR_sockaddr_noconst(BIO_ADDR *ap); 146 socklen_t BIO_ADDR_sockaddr_size(const BIO_ADDR *ap);
|
D | bss_dgram.c | 107 BIO_ADDR peer; 124 BIO_ADDR peer; 307 BIO_ADDR peer; in dgram_read() 410 BIO_ADDR addr; in dgram_ctrl() 453 BIO_ADDR_make(&data->peer, BIO_ADDR_sockaddr((BIO_ADDR *)ptr)); in dgram_ctrl() 570 BIO_ADDR_make(&data->peer, BIO_ADDR_sockaddr((BIO_ADDR *)ptr)); in dgram_ctrl() 585 BIO_ADDR_make(&data->peer, BIO_ADDR_sockaddr((BIO_ADDR *)ptr)); in dgram_ctrl()
|
D | bss_conn.c | 439 const BIO_ADDR *addr = (const BIO_ADDR *)ptr; in conn_ctrl()
|
D | bss_acpt.c | 28 BIO_ADDR cache_accepting_addr; /* Useful if we asked for port 0 */ 30 BIO_ADDR cache_peer_addr;
|
D | b_sock.c | 237 BIO_ADDR res; in BIO_accept()
|
/third_party/openssl/include/openssl/ |
D | bio.h | 174 typedef union bio_addr_st BIO_ADDR; typedef 377 # define BIO_get_conn_address(b) ((const BIO_ADDR *)BIO_ptr_ctrl(b,BIO_C_GET_CONNECT,2)) 644 BIO_ADDR *BIO_ADDR_new(void); 645 int BIO_ADDR_rawmake(BIO_ADDR *ap, int family, 647 void BIO_ADDR_free(BIO_ADDR *); 648 void BIO_ADDR_clear(BIO_ADDR *ap); 649 int BIO_ADDR_family(const BIO_ADDR *ap); 650 int BIO_ADDR_rawaddress(const BIO_ADDR *ap, void *p, size_t *l); 651 unsigned short BIO_ADDR_rawport(const BIO_ADDR *ap); 652 char *BIO_ADDR_hostname_string(const BIO_ADDR *ap, int numeric); [all …]
|
D | ssl.h | 2170 int DTLSv1_listen(SSL *s, BIO_ADDR *client);
|
/third_party/openssl/apps/ |
D | s_socket.c | 39 BIO_ADDR *ourpeer = NULL; 216 const BIO_ADDR *sock_address; in do_server() 218 const BIO_ADDR *sock_address_fallback = NULL; in do_server()
|
D | apps.h | 55 extern BIO_ADDR *ourpeer;
|
D | s_cb.c | 753 BIO_ADDR *lpeer = NULL, *peer = NULL; in generate_cookie_callback()
|
D | s_server.c | 2754 BIO_ADDR *client = NULL; in init_ssl_connection()
|
/third_party/openssl/test/ |
D | dtlsv1listentest.c | 295 BIO_ADDR *peer = NULL; in dtls_listen_test()
|
/third_party/openssl/ssl/ |
D | d1_lib.c | 446 int DTLSv1_listen(SSL *s, BIO_ADDR *client) in DTLSv1_listen() 456 BIO_ADDR *tmpclient = NULL; in DTLSv1_listen()
|
/third_party/openssl/util/ |
D | private.num | 14 BIO_ADDR datatype
|
D | indent.pro | 89 -T BIO_ADDR
|
/third_party/libcoap/src/ |
D | coap_openssl.c | 107 BIO_ADDR *bio_addr;
|
/third_party/openssl/ |
D | CHANGES | 1917 "peer" argument is now expected to be a BIO_ADDR object. 1921 modifications. This introduces the BIO_ADDR and BIO_ADDRINFO types,
|