]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
Removed leftovers of RADIOBERRY special code
authorc vw <dl1ycf@darc.de>
Wed, 15 Jan 2020 14:47:14 +0000 (15:47 +0100)
committerc vw <dl1ycf@darc.de>
Wed, 15 Jan 2020 14:47:14 +0000 (15:47 +0100)
old_discovery.c

index 70f458ed15aae74cd2a95fc98cefff3191f91fe5..9f065b743302ba42c4b8982dba0e2d75cd0fa1ef 100644 (file)
@@ -518,18 +518,22 @@ fprintf(stderr,"old_discovery\n");
     while (ifa) {
         g_main_context_iteration(NULL, 0);
         if (ifa->ifa_addr && ifa->ifa_addr->sa_family == AF_INET) {
-                       #ifdef RADIOBERRY
+#if 0
+//
+// used to be a hook for RADIOBERRY, but does is really need the
+// loopback interface?
+//
                        if((ifa->ifa_flags&IFF_UP)==IFF_UP
                 && (ifa->ifa_flags&IFF_RUNNING)==IFF_RUNNING) {
                                discover(ifa);
                        }
-                       #else
+#else
             if((ifa->ifa_flags&IFF_UP)==IFF_UP
                 && (ifa->ifa_flags&IFF_RUNNING)==IFF_RUNNING
                 && (ifa->ifa_flags&IFF_LOOPBACK)!=IFF_LOOPBACK) {
                 discover(ifa);
             }
-                       #endif 
+#endif 
         }
         ifa = ifa->ifa_next;
     }