| 1801 | |
| 1802 | |
| 1803 | class msg_getaddr: |
| 1804 | __slots__ = () |
| 1805 | msgtype = b"getaddr" |
| 1806 | |
| 1807 | def __init__(self): |
| 1808 | pass |
| 1809 | |
| 1810 | def deserialize(self, f): |
| 1811 | pass |
| 1812 | |
| 1813 | def serialize(self): |
| 1814 | return b"" |
| 1815 | |
| 1816 | def __repr__(self): |
| 1817 | return "msg_getaddr()" |
| 1818 | |
| 1819 | |
| 1820 | class msg_ping: |
no outgoing calls
no test coverage detected