(self, payload)
| 1827 | pass |
| 1828 | |
| 1829 | def add_payload(self, payload): |
| 1830 | # type: (Union[Packet, bytes]) -> NoReturn |
| 1831 | raise Scapy_Exception("Can't add payload to NoPayload instance") |
| 1832 | |
| 1833 | def remove_payload(self): |
| 1834 | # type: () -> None |
nothing calls this directly
no test coverage detected