186 self.watchSpecialChanged = self.tr( |
186 self.watchSpecialChanged = self.tr( |
187 "changed", "must be same as in EditWatchpointDialog") |
187 "changed", "must be same as in EditWatchpointDialog") |
188 |
188 |
189 self.networkInterface = Preferences.getDebugger("NetworkInterface") |
189 self.networkInterface = Preferences.getDebugger("NetworkInterface") |
190 if self.networkInterface == "all": |
190 if self.networkInterface == "all": |
191 hostAddress = QHostAddress("0.0.0.0") # QHostAddress.Any) |
191 hostAddress = QHostAddress("0.0.0.0") # QHostAddress.Any) # secok |
192 elif self.networkInterface == "allv6": |
192 elif self.networkInterface == "allv6": |
193 hostAddress = QHostAddress("::") # QHostAddress.AnyIPv6) |
193 hostAddress = QHostAddress("::") # QHostAddress.AnyIPv6) |
194 else: |
194 else: |
195 hostAddress = QHostAddress(self.networkInterface) |
195 hostAddress = QHostAddress(self.networkInterface) |
196 self.networkInterfaceName, self.networkInterfaceIndex = ( |
196 self.networkInterfaceName, self.networkInterfaceIndex = ( |