X-Git-Url: https://git.openssl.org/?p=openssl.git;a=blobdiff_plain;f=doc%2Fcrypto%2FBIO_s_accept.pod;h=174bd73ce150061201c34fa449994031c8d53adb;hp=4c5de7daeab015782b9c9f36261012c8ecd5377d;hb=b4c1d72e9f4fd47581d2231906b9d45bc003cb3b;hpb=99ec4fdb40a4c06ee8e986f6293e59516d05999a diff --git a/doc/crypto/BIO_s_accept.pod b/doc/crypto/BIO_s_accept.pod index 4c5de7daea..174bd73ce1 100644 --- a/doc/crypto/BIO_s_accept.pod +++ b/doc/crypto/BIO_s_accept.pod @@ -2,9 +2,9 @@ =head1 NAME -BIO_s_accept, BIO_set_accept_port, BIO_get_accept_port, BIO_new_accept, -BIO_set_nbio_accept, BIO_set_accept_bios, BIO_set_bind_mode, -BIO_get_bind_mode, BIO_do_accept - accept BIO +BIO_s_accept, BIO_set_accept_name, BIO_get_name, BIO_set_accept_port, +BIO_get_accept_port, BIO_new_accept, BIO_set_nbio_accept, BIO_set_accept_bios, +BIO_set_bind_mode, BIO_get_bind_mode, BIO_do_accept - accept BIO =head1 SYNOPSIS @@ -12,6 +12,9 @@ BIO_get_bind_mode, BIO_do_accept - accept BIO const BIO_METHOD *BIO_s_accept(void); + long BIO_set_accept_name(BIO *b, char *name); + char *BIO_get_accept_name(BIO *b); + long BIO_set_accept_port(BIO *b, char *name); char *BIO_get_accept_port(BIO *b); @@ -23,10 +26,6 @@ BIO_get_bind_mode, BIO_do_accept - accept BIO long BIO_set_bind_mode(BIO *b, long mode); long BIO_get_bind_mode(BIO *b); - #define BIO_BIND_NORMAL 0 - #define BIO_BIND_REUSEADDR_IF_UNUSED 1 - #define BIO_BIND_REUSEADDR 2 - int BIO_do_accept(BIO *b); =head1 DESCRIPTION @@ -56,17 +55,17 @@ incoming connection. BIO_get_fd() and BIO_set_fd() can be called to retrieve or set the accept socket. See L -BIO_set_accept_port() uses the string B to set the accept -port. The port is represented as a string of the form "host:port", +BIO_set_accept_name() uses the string B to set the accept +name. The name is represented as a string of the form "host:port", where "host" is the interface to use and "port" is the port. The host can be "*" or empty which is interpreted as meaning any interface. If the host is an IPv6 address, it has to be enclosed in brackets, for example "[::1]:https". "port" has the -same syntax as the port specified in BIO_set_conn_port() for +same syntax as the port specified in BIO_set_conn_name() for connect BIOs, that is it can be a numerical port string or a string to lookup using getservbyname() and a string table. -BIO_new_accept() combines BIO_new() and BIO_set_accept_port() into +BIO_new_accept() combines BIO_new() and BIO_set_accept_name() into a single call: that is it creates a new accept BIO with port B. @@ -75,19 +74,19 @@ BIO_set_nbio_accept() sets the accept socket to blocking mode BIO_set_accept_bios() can be used to set a chain of BIOs which will be duplicated and prepended to the chain when an incoming -connection is received. This is useful if, for example, a +connection is received. This is useful if, for example, a buffering or SSL BIO is required for each connection. The chain of BIOs must not be freed after this call, they will be automatically freed when the accept BIO is freed. BIO_set_bind_mode() and BIO_get_bind_mode() set and retrieve -the current bind mode. If BIO_BIND_NORMAL (the default) is set +the current bind mode. If B (the default) is set then another socket cannot be bound to the same port. If -BIO_BIND_REUSEADDR is set then other sockets can bind to the -same port. If BIO_BIND_REUSEADDR_IF_UNUSED is set then and +B is set then other sockets can bind to the +same port. If B is set then and attempt is first made to use BIO_BIN_NORMAL, if this fails and the port is not in use then a second attempt is made -using BIO_BIND_REUSEADDR. +using B. BIO_do_accept() serves two functions. When it is first called, after the accept BIO has been setup, it will attempt @@ -138,17 +137,19 @@ then it is an indication that an accept attempt would block: the application should take appropriate action to wait until the underlying socket has accepted a connection and retry the call. -BIO_set_accept_port(), BIO_get_accept_port(), BIO_set_nbio_accept(), -BIO_set_accept_bios(), BIO_set_bind_mode(), BIO_get_bind_mode() and -BIO_do_accept() are macros. +BIO_set_accept_name(), BIO_get_accept_name(), BIO_set_accept_port(), +BIO_get_accept_port(), BIO_set_nbio_accept(), BIO_set_accept_bios(), +BIO_set_bind_mode(), BIO_get_bind_mode() and BIO_do_accept() are macros. =head1 RETURN VALUES BIO_do_accept(), -BIO_set_accept_port(), BIO_set_nbio_accept(), BIO_set_accept_bios(), -and BIO_set_bind_mode(), return 1 for success and 0 or -1 for failure. +BIO_set_accept_name(), BIO_set_accept_port(), BIO_set_nbio_accept(), +BIO_set_accept_bios(), and BIO_set_bind_mode(), return 1 for success and 0 or +-1 for failure. -BIO_get_accept_port() returns the port name or NULL on error. +BIO_set_accept_name() and BIO_get_accept_port() returns the port name or NULL +on error. BIO_get_bind_mode() returns the set of B flags, or -1 on failure. @@ -161,33 +162,35 @@ down each and finally closes both down. BIO *abio, *cbio, *cbio2; - abio = BIO_new_accept("4444"); - /* First call to BIO_accept() sets up accept BIO */ - if(BIO_do_accept(abio) <= 0) { - fprintf(stderr, "Error setting up accept\n"); - ERR_print_errors_fp(stderr); - exit(0); + abio = BIO_new_accept("4444"); + if (BIO_do_accept(abio) <= 0) { + fprintf(stderr, "Error setting up accept\n"); + ERR_print_errors_fp(stderr); + exit(1); } /* Wait for incoming connection */ - if(BIO_do_accept(abio) <= 0) { - fprintf(stderr, "Error accepting connection\n"); - ERR_print_errors_fp(stderr); - exit(0); + if (BIO_do_accept(abio) <= 0) { + fprintf(stderr, "Error accepting connection\n"); + ERR_print_errors_fp(stderr); + exit(1); } fprintf(stderr, "Connection 1 established\n"); + /* Retrieve BIO for connection */ cbio = BIO_pop(abio); BIO_puts(cbio, "Connection 1: Sending out Data on initial connection\n"); fprintf(stderr, "Sent out data on connection 1\n"); + /* Wait for another connection */ - if(BIO_do_accept(abio) <= 0) { - fprintf(stderr, "Error accepting connection\n"); - ERR_print_errors_fp(stderr); - exit(0); + if (BIO_do_accept(abio) <= 0) { + fprintf(stderr, "Error accepting connection\n"); + ERR_print_errors_fp(stderr); + exit(1); } fprintf(stderr, "Connection 2 established\n"); + /* Close accept BIO to refuse further connections */ cbio2 = BIO_pop(abio); BIO_free(abio); @@ -195,12 +198,18 @@ down each and finally closes both down. fprintf(stderr, "Sent out data on connection 2\n"); BIO_puts(cbio, "Connection 1: Second connection established\n"); + /* Close the two established connections */ BIO_free(cbio); BIO_free(cbio2); -=head1 SEE ALSO +=head1 COPYRIGHT + +Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved. -TBA +Licensed under the OpenSSL license (the "License"). You may not use +this file except in compliance with the License. You can obtain a copy +in the file LICENSE in the source distribution or at +L. =cut