(self)
| 259 | return _payloadStr |
| 260 | |
| 261 | def _selectPort(self): |
| 262 | for connType, connStr in self._portData.items(): |
| 263 | if self.connectionStr.startswith(connType): |
| 264 | return self._skeletonSelection(connStr, maxValue=65535, default=randomRange(1025, 65535)) |
| 265 | |
| 266 | def _selectRhost(self): |
| 267 | if self.connectionStr.startswith("bind"): |
no test coverage detected