1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
/*******************************************************************************
* libproxy - A library for proxy configuration
* Copyright (C) 2006 Nathaniel McCallum <nathaniel@natemccallum.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
******************************************************************************/
#ifndef URL_H_
#define URL_H_
#include "stdbool.h" // For type bool
/**
* WPAD object. All fields are private.
*/
typedef struct _pxURL pxURL;
/**
* @return Frees the pxURL
*/
void px_url_free(pxURL *self);
/**
* Tells whether or not a pxURL string has valid syntax
* @return true if the pxURL is valid, otherwise false
*/
bool px_url_is_valid(const char *url);
/**
* Sends a get request for the pxURL.
* @headers A list of headers to be included in the request.
* @return Socket to read the response on.
*/
int px_url_get(pxURL *self, const char **headers);
/**
* @return Host portion of the pxURL
*/
const char *px_url_get_host(pxURL *self);
/**
* Get the IP addresses of the hostname in this pxURL without using DNS.
* @return IP addresses of the host in the pxURL.
*/
const struct sockaddr *px_url_get_ip_no_dns(pxURL *self);
/**
* Get the IP addresses of the hostname in this pxURL. Use DNS if necessary.
* @return IP addresses of the host in the pxURL.
*/
const struct sockaddr **px_url_get_ips(pxURL *self);
/**
* @return Path portion of the pxURL
*/
const char *px_url_get_path(pxURL *self);
/**
* @return Port portion of the pxURL
*/
int px_url_get_port(pxURL *self);
/**
* @return Scheme portion of the pxURL
*/
const char *px_url_get_scheme(pxURL *self);
/**
* @url String used to create the new pxURL object
* @return New pxURL object
*/
pxURL *px_url_new(const char *url);
/**
* @return String representation of the pxURL
*/
const char *px_url_to_string(pxURL *self);
/**
* @return true if the URLs are the same, else false
*/
bool px_url_equals(pxURL *self, const pxURL *other);
#endif /*URL_H_*/
|