/usr/include/evolution-data-server/camel/camel-url.h is in libcamel1.2-dev 3.10.4-0ubuntu1.6.
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 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 | /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/* camel-url.h : utility functions to parse URLs */
/*
* Authors:
* Bertrand Guiheneuf <bertrand@helixcode.com>
* Dan Winship <danw@ximian.com>
*
* Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of version 2 of the GNU Lesser General Public
* License as published by the Free Software Foundation.
*
* This program 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 program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
* USA
*/
#if !defined (__CAMEL_H_INSIDE__) && !defined (CAMEL_COMPILATION)
#error "Only <camel/camel.h> can be included directly."
#endif
#ifndef CAMEL_URL_H
#define CAMEL_URL_H
#include <glib.h>
#define CAMEL_TYPE_URL (camel_url_get_type ())
G_BEGIN_DECLS
typedef struct _CamelURL CamelURL;
/* if this changes, remember to change camel_url_copy */
struct _CamelURL {
gchar *protocol;
gchar *user;
gchar *authmech;
gchar *host;
gint port;
gchar *path;
GData *params;
gchar *query;
gchar *fragment;
};
typedef enum {
CAMEL_URL_HIDE_PARAMS = 1 << 0,
CAMEL_URL_HIDE_AUTH = 1 << 1
} CamelURLFlags;
#define CAMEL_URL_HIDE_ALL \
(CAMEL_URL_HIDE_PARAMS | CAMEL_URL_HIDE_AUTH)
GType camel_url_get_type (void) G_GNUC_CONST;
CamelURL * camel_url_new_with_base (CamelURL *base,
const gchar *url_string);
CamelURL * camel_url_new (const gchar *url_string,
GError **error);
gchar * camel_url_to_string (CamelURL *url,
CamelURLFlags flags);
guint camel_url_hash (gconstpointer v);
gint camel_url_equal (gconstpointer v,
gconstpointer v2);
CamelURL * camel_url_copy (CamelURL *in);
void camel_url_free (CamelURL *url);
gchar * camel_url_encode (const gchar *part,
const gchar *escape_extra);
void camel_url_decode (gchar *part);
gchar * camel_url_decode_path (const gchar *path);
/* for editing url's */
void camel_url_set_protocol (CamelURL *url,
const gchar *protocol);
void camel_url_set_user (CamelURL *url,
const gchar *user);
void camel_url_set_authmech (CamelURL *url,
const gchar *authmech);
void camel_url_set_host (CamelURL *url,
const gchar *host);
void camel_url_set_port (CamelURL *url,
gint port);
void camel_url_set_path (CamelURL *url,
const gchar *path);
void camel_url_set_param (CamelURL *url,
const gchar *name,
const gchar *value);
void camel_url_set_query (CamelURL *url,
const gchar *query);
void camel_url_set_fragment (CamelURL *url,
const gchar *fragment);
const gchar * camel_url_get_param (CamelURL *url,
const gchar *name);
G_END_DECLS
#endif /* URL_UTIL_H */
|