Return a safe interface name for scanning commands.
(self, interface=None)
| 156 | # Connection tracking |
| 157 | self.last_connection_type = None # 'wifi', 'ethernet', or None |
| 158 | self.last_ethernet_interface = None |
| 159 | |
| 160 | # Load configuration |
| 161 | self.load_wifi_config() |
| 162 | |
| 163 | def load_wifi_config(self): |
| 164 | """Load Wi-Fi configuration from shared data""" |
| 165 | try: |
| 166 | config = self.shared_data.config |
| 167 |
no outgoing calls
no test coverage detected