Extend a DCE/RPC server into another
(self, server_cls)
| 114 | return deco |
| 115 | |
| 116 | def extend(self, server_cls): |
| 117 | """ |
| 118 | Extend a DCE/RPC server into another |
| 119 | """ |
| 120 | self.dcerpc_commands.update(server_cls.dcerpc_commands) |
| 121 | |
| 122 | def make_reply(self, req): |
| 123 | cls = req[DceRpc5Request].payload.__class__ |
no test coverage detected