/usr/include/gupnp-igd-1.0/libgupnp-igd/gupnp-simple-igd.h is in libgupnp-igd-1.0-dev 0.2.4-1.
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 107 108 109 110 111 112 113 114 115 116 | /*
* GUPnP Simple IGD abstraction
*
* Copyright 2008 Collabora Ltd.
* @author: Olivier Crete <olivier.crete@collabora.co.uk>
* Copyright 2008 Nokia Corp.
*
* 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.1 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef __GUPNP_SIMPLE_IGD_H__
#define __GUPNP_SIMPLE_IGD_H__
#include <glib.h>
#include <glib-object.h>
G_BEGIN_DECLS
/* TYPE MACROS */
#define GUPNP_TYPE_SIMPLE_IGD \
(gupnp_simple_igd_get_type ())
#define GUPNP_SIMPLE_IGD(obj) \
(G_TYPE_CHECK_INSTANCE_CAST((obj), GUPNP_TYPE_SIMPLE_IGD, \
GUPnPSimpleIgd))
#define GUPNP_SIMPLE_IGD_CLASS(klass) \
(G_TYPE_CHECK_CLASS_CAST((klass), GUPNP_TYPE_SIMPLE_IGD, \
GUPnPSimpleIgdClass))
#define GUPNP_IS_SIMPLE_IGD(obj) \
(G_TYPE_CHECK_INSTANCE_TYPE((obj), GUPNP_TYPE_SIMPLE_IGD))
#define GUPNP_IS_SIMPLE_IGD_CLASS(klass) \
(G_TYPE_CHECK_CLASS_TYPE((klass), GUPNP_TYPE_SIMPLE_IGD))
#define GUPNP_SIMPLE_IGD_GET_CLASS(obj) \
(G_TYPE_INSTANCE_GET_CLASS ((obj), GUPNP_TYPE_SIMPLE_IGD, \
GUPnPSimpleIgdClass))
#define GUPNP_SIMPLE_IGD_CAST(obj) \
((GUPnPSimpleIgd *) (obj))
typedef struct _GUPnPSimpleIgd GUPnPSimpleIgd;
typedef struct _GUPnPSimpleIgdClass GUPnPSimpleIgdClass;
typedef struct _GUPnPSimpleIgdPrivate GUPnPSimpleIgdPrivate;
/**
* GUPnPSimpleIgd:
*
* All members are private, access them using methods and properties
*/
struct _GUPnPSimpleIgd
{
GObject parent;
/*< private >*/
GUPnPSimpleIgdPrivate *priv;
};
#define GUPNP_SIMPLE_IGD_ERROR (gupnp_simple_igd_error_quark ())
/**
* GUPnPSimpleIgdError:
* @GUPNP_SIMPLE_IGD_ERROR_EXTERNAL_ADDRESS: Error getting the external
* address of the router
*
* Errors coming out of the GUPnPSimpleIGD object.
*/
typedef enum {
GUPNP_SIMPLE_IGD_ERROR_EXTERNAL_ADDRESS,
} GUPnPSimpleIgdError;
GQuark gupnp_simple_igd_error_quark (void);
GType gupnp_simple_igd_get_type (void);
GUPnPSimpleIgd *
gupnp_simple_igd_new (void);
void
gupnp_simple_igd_add_port (GUPnPSimpleIgd *self,
const gchar *protocol,
guint16 external_port,
const gchar *local_ip,
guint16 local_port,
guint32 lease_duration,
const gchar *description);
void
gupnp_simple_igd_remove_port (GUPnPSimpleIgd *self,
const gchar *protocol,
guint external_port);
void
gupnp_simple_igd_remove_port_local (GUPnPSimpleIgd *self,
const gchar *protocol,
const gchar *local_ip,
guint16 local_port);
gboolean
gupnp_simple_igd_delete_all_mappings (GUPnPSimpleIgd *self);
G_END_DECLS
#endif /* __GUPNP_SIMPLE_IGD_H__ */
|