Skip to content

Commit fa8b40b

Browse files
jsarrettEmmanuelP
authored andcommitted
Don't ignore POINTOPOINT interfaces on UNIX family OSes
This patch allows Aravis to connect to cameras over POINTOPOINT IP links. Broadcasts are not expected to work, but unicast does. This allows connecting to cameras across a VPM, or PPPoE network.
1 parent c7dc22d commit fa8b40b

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/arvnetwork.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,6 @@ arv_enumerate_network_interfaces (void)
355355

356356
for (ifap_iter = ifap; ifap_iter != NULL; ifap_iter = ifap_iter->ifa_next) {
357357
if ((ifap_iter->ifa_flags & IFF_UP) != 0 &&
358-
(ifap_iter->ifa_flags & IFF_POINTOPOINT) == 0 &&
359358
(ifap_iter->ifa_addr != NULL) &&
360359
(ifap_iter->ifa_addr->sa_family == AF_INET)) {
361360
ArvNetworkInterface* a;

0 commit comments

Comments
 (0)