Exemplo n.º 1
0
 def resync(self):
     # TODO : At the moment, resync will drop existing Teredo routes
     #        if any. Change that ...
     self.invalidate_cache()
     self.routes = read_routes6()
     if self.routes == []:
         log_loading.info("No IPv6 support in kernel")
Exemplo n.º 2
0
 def resync(self):
     # TODO : At the moment, resync will drop existing Teredo routes
     #        if any. Change that ...
     self.invalidate_cache()
     self.routes = read_routes6()
     if self.routes == []:
         log_loading.info("No IPv6 support in kernel")
Exemplo n.º 3
0
 def resync(self):
     # type: () -> None
     # TODO : At the moment, resync will drop existing Teredo routes
     #        if any. Change that ...
     self.invalidate_cache()
     self.routes = read_routes6()
     self.ipv6_ifaces = set()
     for route in self.routes:
         self.ipv6_ifaces.add(route[3])
     if self.routes == []:
         log_loading.info("No IPv6 support in kernel")