Generate the response block of this request. Careful: it only sets the fields which can be set from the request
(self)
| 809 | block_type = 0x0101 |
| 810 | |
| 811 | def get_response(self): |
| 812 | """Generate the response block of this request. |
| 813 | Careful: it only sets the fields which can be set from the request |
| 814 | """ |
| 815 | res = ARBlockRes() |
| 816 | for field in ["ARType", "ARUUID", "SessionKey"]: |
| 817 | res.setfieldval(field, self.getfieldval(field)) |
| 818 | return res |
| 819 | |
| 820 | |
| 821 | class ARBlockRes(Block): |
nothing calls this directly
no test coverage detected