/usr/include/dovecot/http-url.h is in dovecot-dev 1:2.2.9-1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | #ifndef HTTP_URL_H
#define HTTP_URL_H
#include "net.h"
struct http_request_target;
struct http_url {
/* server */
const char *host_name;
struct ip_addr host_ip;
in_port_t port;
/* userinfo (not parsed by default) */
const char *user;
const char *password;
/* path */
const char *path;
/* ?query (still encoded) */
const char *enc_query;
/* #fragment (still encoded) */
const char *enc_fragment;
unsigned int have_host_ip:1; /* URL uses IP address */
unsigned int have_port:1;
unsigned int have_ssl:1;
};
/*
* HTTP URL parsing
*/
enum http_url_parse_flags {
/* Scheme part 'http:' is already parsed externally. This implies that
this is an absolute HTTP URL. */
HTTP_URL_PARSE_SCHEME_EXTERNAL = 0x01,
/* Allow '#fragment' part in HTTP URL */
HTTP_URL_ALLOW_FRAGMENT_PART = 0x02,
/* Allow 'user:password@' part in HTTP URL */
HTTP_URL_ALLOW_USERINFO_PART = 0x04
};
int http_url_parse(const char *url, struct http_url *base,
enum http_url_parse_flags flags, pool_t pool,
struct http_url **url_r, const char **error_r);
int http_url_request_target_parse(const char *request_target,
const char *host_header, pool_t pool,
struct http_request_target *target, const char **error_r);
/*
* HTTP URL manipulation
*/
void http_url_copy_authority(pool_t pool, struct http_url *dest,
const struct http_url *src);
void http_url_copy(pool_t pool, struct http_url *dest,
const struct http_url *src);
struct http_url *http_url_clone(pool_t pool,const struct http_url *src);
/*
* HTTP URL construction
*/
const char *http_url_create(const struct http_url *url);
const char *http_url_create_host(const struct http_url *url);
const char *http_url_create_authority(const struct http_url *url);
const char *http_url_create_target(const struct http_url *url);
void http_url_escape_path(string_t *out, const char *data);
void http_url_escape_param(string_t *out, const char *data);
#endif
|