/usr/include/gnet-2.0/uri.h is in libgnet-dev 2.0.8-2.2ubuntu1.
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 | /* GNet - Networking library
* Copyright (C) 2000-2001 David Helder, David Bolcsfoldi
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#ifndef _GNET_URI_H
#define _GNET_URI_H
#include <glib.h>
G_BEGIN_DECLS
/**
* GURI:
* @scheme: Scheme (or protocol)
* @userinfo: User info
* @hostname: Host name
* @port: Port number
* @path: Path
* @query: Query
* @fragment: Fragment
*
* The #GURI structure represents a URI. All fields in this
* structure are publicly readable.
*
**/
typedef struct _GURI GURI;
struct _GURI
{
gchar* scheme;
gchar* userinfo;
gchar* hostname;
gint port;
gchar* path;
gchar* query;
gchar* fragment;
};
GURI* gnet_uri_new (const gchar* uri);
GURI* gnet_uri_new_fields (const gchar* scheme, const gchar* hostname,
const gint port, const gchar* path);
GURI* gnet_uri_new_fields_all (const gchar* scheme, const gchar* userinfo,
const gchar* hostname, const gint port,
const gchar* path,
const gchar* query, const gchar* fragment);
GURI* gnet_uri_clone (const GURI* uri);
void gnet_uri_delete (GURI* uri);
gboolean gnet_uri_equal (gconstpointer p1, gconstpointer p2);
guint gnet_uri_hash (gconstpointer p);
void gnet_uri_escape (GURI* uri);
void gnet_uri_unescape (GURI* uri);
gchar* gnet_uri_get_string (const GURI* uri);
void gnet_uri_set_scheme (GURI* uri, const gchar* scheme);
void gnet_uri_set_userinfo (GURI* uri, const gchar* userinfo);
void gnet_uri_set_hostname (GURI* uri, const gchar* hostname);
void gnet_uri_set_port (GURI* uri, gint port);
void gnet_uri_set_path (GURI* uri, const gchar* path);
void gnet_uri_set_query (GURI* uri, const gchar* query);
void gnet_uri_set_fragment (GURI* uri, const gchar* fragment);
gboolean gnet_uri_parse_inplace (GURI * guri, gchar * uri, gchar * hostname, gsize len);
G_END_DECLS
#endif /* _GNET_URI_H */
|