Richard Levitte | 28a0841 | 2016-02-02 15:54:57 +0100 | [diff] [blame] | 1 | =pod |
| 2 | |
| 3 | =head1 NAME |
| 4 | |
Rich Salz | d4ea965 | 2017-03-11 12:48:32 -0500 | [diff] [blame^] | 5 | BIO_hostserv_priorities, |
| 6 | BIO_parse_hostserv |
| 7 | - utility routines to parse a standard host and service string |
Richard Levitte | 28a0841 | 2016-02-02 15:54:57 +0100 | [diff] [blame] | 8 | |
| 9 | =head1 SYNOPSIS |
| 10 | |
| 11 | #include <openssl/bio.h> |
| 12 | |
| 13 | enum BIO_hostserv_priorities { |
| 14 | BIO_PARSE_PRIO_HOST, BIO_PARSE_PRIO_SERV |
| 15 | }; |
| 16 | int BIO_parse_hostserv(const char *hostserv, char **host, char **service, |
| 17 | enum BIO_hostserv_priorities hostserv_prio); |
| 18 | |
| 19 | =head1 DESCRIPTION |
| 20 | |
| 21 | BIO_parse_hostserv() will parse the information given in B<hostserv>, |
| 22 | create strings with the host name and service name and give those |
| 23 | back via B<host> and B<service>. Those will need to be freed after |
| 24 | they are used. B<hostserv_prio> helps determine if B<hostserv> shall |
Alex Gaynor | b9b6a7e | 2016-03-20 11:51:06 -0400 | [diff] [blame] | 25 | be interpreted primarily as a host name or a service name in ambiguous |
Richard Levitte | 28a0841 | 2016-02-02 15:54:57 +0100 | [diff] [blame] | 26 | cases. |
| 27 | |
| 28 | The syntax the BIO_parse_hostserv() recognises is: |
| 29 | |
| 30 | host + ':' + service |
| 31 | host + ':' + '*' |
| 32 | host + ':' |
| 33 | ':' + service |
| 34 | '*' + ':' + service |
| 35 | host |
| 36 | service |
| 37 | |
| 38 | The host part can be a name or an IP address. If it's a IPv6 |
| 39 | address, it MUST be enclosed in brackets, such as '[::1]'. |
| 40 | |
| 41 | The service part can be a service name or its port number. |
| 42 | |
| 43 | The returned values will depend on the given B<hostserv> string |
| 44 | and B<hostserv_prio>, as follows: |
| 45 | |
Richard Levitte | 28a0841 | 2016-02-02 15:54:57 +0100 | [diff] [blame] | 46 | host + ':' + service => *host = "host", *service = "service" |
| 47 | host + ':' + '*' => *host = "host", *service = NULL |
| 48 | host + ':' => *host = "host", *service = NULL |
| 49 | ':' + service => *host = NULL, *service = "service" |
| 50 | '*' + ':' + service => *host = NULL, *service = "service" |
Rich Salz | 1bc7451 | 2016-05-20 08:11:46 -0400 | [diff] [blame] | 51 | |
Richard Levitte | 28a0841 | 2016-02-02 15:54:57 +0100 | [diff] [blame] | 52 | in case no ':' is present in the string, the result depends on |
| 53 | hostserv_prio, as follows: |
Rich Salz | 1bc7451 | 2016-05-20 08:11:46 -0400 | [diff] [blame] | 54 | |
Richard Levitte | 28a0841 | 2016-02-02 15:54:57 +0100 | [diff] [blame] | 55 | when hostserv_prio == BIO_PARSE_PRIO_HOST |
| 56 | host => *host = "host", *service untouched |
Rich Salz | 1bc7451 | 2016-05-20 08:11:46 -0400 | [diff] [blame] | 57 | |
Richard Levitte | 28a0841 | 2016-02-02 15:54:57 +0100 | [diff] [blame] | 58 | when hostserv_prio == BIO_PARSE_PRIO_SERV |
| 59 | service => *host untouched, *service = "service" |
| 60 | |
| 61 | =head1 SEE ALSO |
| 62 | |
| 63 | L<BIO_ADDRINFO(3)> |
Rich Salz | 99ec4fd | 2016-05-18 10:16:40 -0400 | [diff] [blame] | 64 | |
Rich Salz | e2f9261 | 2016-05-18 11:44:05 -0400 | [diff] [blame] | 65 | =head1 COPYRIGHT |
| 66 | |
| 67 | Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. |
| 68 | |
| 69 | Licensed under the OpenSSL license (the "License"). You may not use |
| 70 | this file except in compliance with the License. You can obtain a copy |
| 71 | in the file LICENSE in the source distribution or at |
| 72 | L<https://www.openssl.org/source/license.html>. |
| 73 | |
| 74 | =cut |