Blob


1 /*
2 * Copyright (c) 2021 Omar Polo <op@omarpolo.com>
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
17 /* for the time being, drop everything but the URL stuff */
19 #ifndef PHOS_H
20 #define PHOS_H
22 #ifdef __cplusplus
23 #extern "C" {
24 #endif
26 #include <stdint.h>
28 #define PHOS_URL_MAX_LEN 1024
30 struct phos_uri {
31 char scheme[32];
32 char host[1024];
33 char port[6];
34 uint16_t dec_port;
35 char path[1024];
36 char query[1024];
37 char fragment[32];
38 };
40 /* phos_uri.c */
41 int phos_parse_uri_reference(const char*, struct phos_uri*);
42 int phos_parse_absolute_uri(const char*, struct phos_uri*);
43 int phos_resolve_uri_from_str(const struct phos_uri*, const char *, struct phos_uri*);
44 void phos_uri_drop_empty_segments(struct phos_uri*);
45 int phos_uri_set_query(struct phos_uri*, const char*);
46 int phos_serialize_uri(const struct phos_uri*, char*, size_t);
48 #ifdef __cplusplus
49 }
50 #endif
52 #endif /* PHOS_H */