コード例 #1
0
ファイル: route6.py プロジェクト: pokhrelsishir/scapy-1
 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")
コード例 #2
0
ファイル: route6.py プロジェクト: segment-routing/scapy
 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")
コード例 #3
0
ファイル: route6.py プロジェクト: rscharp/scapy
 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")