blob: 7811da46a570da633a2fa09ec464364609f2d442 [file] [log] [blame]
Richard Levitte28a08412016-02-02 15:54:57 +01001=pod
2
3=head1 NAME
4
Rich Salzd4ea9652017-03-11 12:48:32 -05005BIO_lookup_type,
Rich Salz8162f6f2016-06-09 17:02:59 -04006BIO_ADDRINFO, BIO_ADDRINFO_next, BIO_ADDRINFO_free,
Richard Levitte28a08412016-02-02 15:54:57 +01007BIO_ADDRINFO_family, BIO_ADDRINFO_socktype, BIO_ADDRINFO_protocol,
Rich Salz8162f6f2016-06-09 17:02:59 -04008BIO_ADDRINFO_address,
9BIO_lookup
Richard Levitte28a08412016-02-02 15:54:57 +010010- BIO_ADDRINFO type and routines
11
12=head1 SYNOPSIS
13
14 #include <sys/types.h>
15 #include <openssl/bio.h>
16
17 typedef union bio_addrinfo_st BIO_ADDRINFO;
18
19 enum BIO_lookup_type {
20 BIO_LOOKUP_CLIENT, BIO_LOOKUP_SERVER
21 };
22 int BIO_lookup(const char *node, const char *service,
23 enum BIO_lookup_type lookup_type,
24 int family, int socktype, BIO_ADDRINFO **res);
25
26 const BIO_ADDRINFO *BIO_ADDRINFO_next(const BIO_ADDRINFO *bai);
27 int BIO_ADDRINFO_family(const BIO_ADDRINFO *bai);
28 int BIO_ADDRINFO_socktype(const BIO_ADDRINFO *bai);
29 int BIO_ADDRINFO_protocol(const BIO_ADDRINFO *bai);
30 const BIO_ADDR *BIO_ADDRINFO_address(const BIO_ADDRINFO *bai);
31 void BIO_ADDRINFO_free(BIO_ADDRINFO *bai);
32
33=head1 DESCRIPTION
34
35The B<BIO_ADDRINFO> type is a wrapper for address information
36types provided on your platform.
37
38B<BIO_ADDRINFO> normally forms a chain of several that can be
39picked at one by one.
40
41BIO_lookup() looks up a specified B<host> and B<service>, and
42uses B<lookup_type> to determine what the default address should
43be if B<host> is B<NULL>. B<family>, B<socktype> are used to
44determine what protocol family and protocol should be used for
45the lookup. B<family> can be any of AF_INET, AF_INET6, AF_UNIX and
46AF_UNSPEC, and B<socktype> can be SOCK_STREAM or SOCK_DGRAM.
47B<res> points at a pointer to hold the start of a B<BIO_ADDRINFO>
48chain.
49For the family B<AF_UNIX>, BIO_lookup() will ignore the B<service>
50parameter and expects the B<node> parameter to hold the path to the
51socket file.
52
53BIO_ADDRINFO_family() returns the family of the given
54B<BIO_ADDRINFO>. The result will be one of the constants
55AF_INET, AF_INET6 and AF_UNIX.
56
57BIO_ADDRINFO_socktype() returns the socket type of the given
58B<BIO_ADDRINFO>. The result will be one of the constants
59SOCK_STREAM and SOCK_DGRAM.
60
61BIO_ADDRINFO_protocol() returns the protocol id of the given
62B<BIO_ADDRINFO>. The result will be one of the constants
63IPPROTO_TCP and IPPROTO_UDP.
64
65BIO_ADDRINFO_address() returns the underlying B<BIO_ADDR>
66of the given B<BIO_ADDRINFO>.
67
68BIO_ADDRINFO_next() returns the next B<BIO_ADDRINFO> in the chain
69from the given one.
70
71BIO_ADDRINFO_free() frees the chain of B<BIO_ADDRINFO> starting
72with the given one.
73
74=head1 RETURN VALUES
75
Alex Gaynor35ed3932016-03-19 12:28:58 -040076BIO_lookup() returns 1 on success and 0 when an error occurred, and
FdaSilvaYY24c2cd32016-05-01 19:52:58 +020077will leave an error indication on the OpenSSL error stack in that case.
Richard Levitte28a08412016-02-02 15:54:57 +010078
79All other functions described here return 0 or B<NULL> when the
80information they should return isn't available.
81
Rich Salze2f92612016-05-18 11:44:05 -040082=head1 COPYRIGHT
83
84Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
85
86Licensed under the OpenSSL license (the "License"). You may not use
87this file except in compliance with the License. You can obtain a copy
88in the file LICENSE in the source distribution or at
89L<https://www.openssl.org/source/license.html>.
90
91=cut