(self, reply, send_function=None)
| 149 | pass |
| 150 | |
| 151 | def send_reply(self, reply, send_function=None): |
| 152 | # type: (_T, Optional[Callable[..., None]]) -> None |
| 153 | if send_function: |
| 154 | send_function(reply) |
| 155 | else: |
| 156 | self.send_function(reply, **self.optsend) |
| 157 | |
| 158 | def print_reply(self, req, reply): |
| 159 | # type: (Packet, _T) -> None |