--- a/upplay.cpp
+++ b/upplay.cpp
@@ -30,6 +30,7 @@
 #include <QMessageBox>
 
 #include <libupnpp/upnpplib.hxx>
+#include <libupnpp/upnpputils.hxx>
 #include <libupnpp/log.hxx>
 
 #include "application.h"
@@ -129,6 +130,11 @@
             }
         }
     }
+    vector<string> adapters;
+    UPnPP::getAdapterNames(adapters);
+    for (unsigned int i = 0; i < adapters.size(); i++) {
+        cerr << "ADAPTER: " << adapters[i] << endl;
+    }
 
     if ((cp = getenv("UPPLAY_UPNPLOGFILENAME"))) {
         char *cp1 = getenv("UPPLAY_UPNPLOGLEVEL");