| 1060 | |
| 1061 | |
| 1062 | class DceRpc5Bind(_DceRpcPayload): |
| 1063 | name = "DCE/RPC v5 - Bind" |
| 1064 | fields_desc = [ |
| 1065 | _EField(ShortField("max_xmit_frag", 5840)), |
| 1066 | _EField(ShortField("max_recv_frag", 8192)), |
| 1067 | _EField(IntField("assoc_group_id", 0)), |
| 1068 | # p_cont_list_t |
| 1069 | _EField( |
| 1070 | FieldLenField("n_context_elem", None, count_of="context_elem", fmt="B") |
| 1071 | ), |
| 1072 | StrFixedLenField("reserved", 0, length=3), |
| 1073 | EPacketListField( |
| 1074 | "context_elem", |
| 1075 | [], |
| 1076 | DceRpc5Context, |
| 1077 | endianness_from=_dce_rpc_endianness, |
| 1078 | count_from=lambda pkt: pkt.n_context_elem, |
| 1079 | ), |
| 1080 | ] |
| 1081 | |
| 1082 | |
| 1083 | bind_layers(DceRpc5, DceRpc5Bind, ptype=11) |
nothing calls this directly
no test coverage detected
searching dependent graphs…