Top |
This simple class allows applications to map ports on UPnP routers. It implements the basic functionalities to map ports to external ports. It also allows implementations to know the external port from the router's perspective.
Every call to this object, including its creation, MUST always be done
using the same thread local GMainContext pushed via
g_main_context_push_thread_default()
;
GUPnPSimpleIgd *
gupnp_simple_igd_new (void
);
This creates a new GUPnpSimpleIgd object using the special GMainContext
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
);
This adds a port to the router's forwarding table. The mapping will
be automatically refreshed by this object until it is either
removed with gupnp_simple_igd_remove_port()
,
gupnp_simple_igd_remove_port_local()
or the object disapears.
If there is a problem, the “error-mapping-port” signal will be emitted. If a router is found and a port is mapped correctly, “mapped-external-port” will be emitted. These signals may be emitted multiple times if there are multiple routers present.
self |
The GUPnPSimpleIgd object |
|
protocol |
the protocol "UDP" or "TCP" |
|
external_port |
The port to try to open on the external device, 0 means to try a random port if the same port as the local port is already taken |
|
local_ip |
The IP address to forward packets to (most likely the local ip address) |
|
local_port |
The local port to forward packets to |
|
lease_duration |
The duration of the lease (it will be auto-renewed before it expires). This is in seconds. |
|
description |
The description that will appear in the router's table |
void gupnp_simple_igd_remove_port (GUPnPSimpleIgd *self
,const gchar *protocol
,guint external_port
);
This tries to remove a port entry from the routers that was previously added
with gupnp_simple_igd_add_port()
. There is no indicated of success or failure
it is a best effort mechanism. If it fails, the bindings will disapears after
the lease duration set when the port where added.
self |
The GUPnPSimpleIgd object |
|
protocol |
the protocol "UDP" or "TCP" as given to
|
|
external_port |
The port to try to open on the external device as given to
|
gboolean
gupnp_simple_igd_delete_all_mappings (GUPnPSimpleIgd *self
);
Removes all mappings and prevents other from being formed Should only be called by the dispose function of subclasses
void gupnp_simple_igd_remove_port_local (GUPnPSimpleIgd *self
,const gchar *protocol
,const gchar *local_ip
,guint16 local_port
);
This tries to remove a port entry from the routers that was previously added
with gupnp_simple_igd_add_port()
. There is no indicated of success or failure
it is a best effort mechanism. If it fails, the bindings will disapears after
the lease duration set when the port where added.
self |
The GUPnPSimpleIgd object |
|
protocol |
the protocol "UDP" or "TCP" as given to
|
|
local_ip |
The local ip on the internal device as was to
|
|
local_port |
The port to try to open on the internal device as given to
|