Deserialise the extension from binary data.
(self, parser)
| 94 | extType=ExtensionType.status_request) |
| 95 | |
| 96 | def parse(self, parser): |
| 97 | """Deserialise the extension from binary data.""" |
| 98 | if parser.getRemainingLength() != 0: |
| 99 | raise SyntaxError() # FIXME |
| 100 | return self |
| 101 | |
| 102 | def __repr__(self): |
| 103 | """Human readable representation of the object.""" |
nothing calls this directly
no outgoing calls
no test coverage detected