2 This file is part of PulseAudio.
4 Copyright 2004-2006 Lennart Poettering
6 PulseAudio is free software; you can redistribute it and/or modify
7 it under the terms of the GNU Lesser General Public License as
8 published by the Free Software Foundation; either version 2.1 of the
9 License, or (at your option) any later version.
11 PulseAudio is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with PulseAudio; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
29 #ifdef HAVE_ARPA_INET_H
30 #include <arpa/inet.h>
33 #include <pulse/xmalloc.h>
34 #include <pulse/util.h>
36 #include <pulsecore/core-util.h>
37 #include <pulsecore/macro.h>
38 #include <pulsecore/inet_pton.h>
40 #include "parseaddr.h"
42 /* Parse addresses in one of the following forms:
48 * Return a newly allocated string of the hostname and fill in *ret_port if specified */
50 static char *parse_host(const char *s
, uint16_t *ret_port
) {
56 if (!(e
= strchr(s
+1, ']')))
62 if (pa_atou(e
+2, &p
) < 0)
65 *ret_port
= (uint16_t) p
;
69 return pa_xstrndup(s
+1, (size_t) (e
-s
-1));
74 if (!(e
= strrchr(s
, ':')))
77 if (pa_atou(e
+1, &p
) < 0)
80 *ret_port
= (uint16_t) p
;
81 return pa_xstrndup(s
, (size_t) (e
-s
));
85 int pa_parse_address(const char *name
, pa_parsed_address
*ret_p
) {
91 memset(ret_p
, 0, sizeof(pa_parsed_address
));
92 ret_p
->type
= PA_PARSED_ADDRESS_TCP_AUTO
;
97 /* The URL starts with a host id for detecting local connections */
98 if (!(id
= pa_machine_id()))
101 pfx
= pa_sprintf_malloc("{%s}", id
);
104 if (!pa_startswith(name
, pfx
)) {
110 p
= name
+ strlen(pfx
);
116 ret_p
->type
= PA_PARSED_ADDRESS_UNIX
;
117 else if (pa_startswith(p
, "unix:")) {
118 ret_p
->type
= PA_PARSED_ADDRESS_UNIX
;
119 p
+= sizeof("unix:")-1;
120 } else if (pa_startswith(p
, "tcp:")) {
121 ret_p
->type
= PA_PARSED_ADDRESS_TCP4
;
122 p
+= sizeof("tcp:")-1;
123 } else if (pa_startswith(p
, "tcp4:")) {
124 ret_p
->type
= PA_PARSED_ADDRESS_TCP4
;
125 p
+= sizeof("tcp4:")-1;
126 } else if (pa_startswith(p
, "tcp6:")) {
127 ret_p
->type
= PA_PARSED_ADDRESS_TCP6
;
128 p
+= sizeof("tcp6:")-1;
131 if (ret_p
->type
== PA_PARSED_ADDRESS_UNIX
)
132 ret_p
->path_or_host
= pa_xstrdup(p
);
134 if (!(ret_p
->path_or_host
= parse_host(p
, &ret_p
->port
)))
140 pa_bool_t
pa_is_ip_address(const char *a
) {
141 char buf
[INET6_ADDRSTRLEN
];
145 if (inet_pton(AF_INET6
, a
, buf
) >= 1)
148 if (inet_pton(AF_INET
, a
, buf
) >= 1)