Application relationship block response
| 819 | |
| 820 | |
| 821 | class ARBlockRes(Block): |
| 822 | """Application relationship block response""" |
| 823 | fields_desc = [ |
| 824 | BlockHeader, |
| 825 | XShortEnumField("ARType", 1, AR_TYPE), |
| 826 | UUIDField("ARUUID", None), |
| 827 | ShortField("SessionKey", 0), |
| 828 | MACField("CMResponderMacAdd", None), |
| 829 | ShortField("CMResponderUDPRTPort", 0x8892), |
| 830 | ] |
| 831 | # default block_type value |
| 832 | block_type = 0x8101 |
| 833 | |
| 834 | |
| 835 | # IOCRBlockRe{q,s} |
no test coverage detected
searching dependent graphs…