Test if the address is unspecified. Returns: A boolean, True if this is the unspecified address as defined in RFC 5735 3.
(self)
| 1373 | |
| 1374 | @property |
| 1375 | def is_unspecified(self): |
| 1376 | """Test if the address is unspecified. |
| 1377 | |
| 1378 | Returns: |
| 1379 | A boolean, True if this is the unspecified address as defined in |
| 1380 | RFC 5735 3. |
| 1381 | |
| 1382 | """ |
| 1383 | return self == self._constants._unspecified_address |
| 1384 | |
| 1385 | @property |
| 1386 | def is_loopback(self): |