[gupnp-igd/wip/new-gupnp] Port to GUPnP 1.6 API




commit c195761f542c59ce6dfeed4dd2457c34ca17b938
Author: Jens Georg <mail jensge org>
Date:   Tue May 3 22:39:16 2022 +0200

    Port to GUPnP 1.6 API
    
    And thus to libsoup3. The code changes are even compatible with GUPnP
    1.4.3 so the gupnp version could be a configure option

 meson.build                    | 4 ++--
 tests/gtest/gupnp-simple-igd.c | 6 +++---
 2 files changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/meson.build b/meson.build
index df2fb24..44dc7e9 100644
--- a/meson.build
+++ b/meson.build
@@ -7,8 +7,8 @@ glib_req = '>= 2.38'
 dependencies = [
     dependency('glib-2.0', version: glib_req, required: true),
     dependency('gobject-2.0', version: glib_req, required: true),
-    dependency('gupnp-1.2', version : '>= 1.2.0'),
-    dependency('gssdp-1.2', version : '>= 1.2.0'),
+    dependency('gupnp-1.6', version : '>= 1.5.0'),
+    dependency('gssdp-1.6', version : '>= 1.5.0'),
     dependency('gthread-2.0', required: true)
 ]
 
diff --git a/tests/gtest/gupnp-simple-igd.c b/tests/gtest/gupnp-simple-igd.c
index 6e62fea..7d8fb47 100644
--- a/tests/gtest/gupnp-simple-igd.c
+++ b/tests/gtest/gupnp-simple-igd.c
@@ -88,7 +88,7 @@ get_external_ip_address_cb (GUPnPService *service,
   else
     g_assert_not_reached ();
 
-  gupnp_service_action_return (action);
+  gupnp_service_action_return_success (action);
 
 }
 
@@ -139,7 +139,7 @@ add_port_mapping_cb (GUPnPService *service,
   if (return_conflict && external_port == INTERNAL_PORT)
     gupnp_service_action_return_error (action, 718, "ConflictInMappingEntry");
   else
-    gupnp_service_action_return (action);
+    gupnp_service_action_return_success (action);
 }
 
 static gboolean
@@ -172,7 +172,7 @@ delete_port_mapping_cb (GUPnPService *service,
     g_assert (external_port != INTERNAL_PORT);
   g_assert (proto && !strcmp (proto, "UDP"));
 
-  gupnp_service_action_return (action);
+  gupnp_service_action_return_success (action);
 
   g_free (remote_host);
   g_free (proto);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]