2008-12-12 19:13:55 +01:00
|
|
|
/* GIO - GLib Input, Output and Streaming Library
|
|
|
|
*
|
|
|
|
* Copyright (C) 2008 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* 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 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., 59 Temple Place, Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __G_NETWORKINGPRIVATE_H__
|
|
|
|
#define __G_NETWORKINGPRIVATE_H__
|
|
|
|
|
2010-11-11 15:57:25 +01:00
|
|
|
#include "gnetworking.h"
|
2008-12-12 19:13:55 +01:00
|
|
|
|
2008-12-29 18:53:47 +01:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2010-08-10 22:53:25 +02:00
|
|
|
gboolean _g_uri_parse_authority (const char *uri,
|
|
|
|
char **host,
|
|
|
|
guint16 *port,
|
|
|
|
char **userinfo);
|
2010-09-10 14:51:21 +02:00
|
|
|
gchar * _g_uri_from_authority (const gchar *protocol,
|
|
|
|
const gchar *host,
|
|
|
|
guint port,
|
|
|
|
const gchar *userinfo);
|
2010-08-10 22:53:25 +02:00
|
|
|
|
2008-12-29 18:53:47 +01:00
|
|
|
G_END_DECLS
|
|
|
|
|
2008-12-12 19:13:55 +01:00
|
|
|
#endif /* __G_NETWORKINGPRIVATE_H__ */
|