| 708 | |
| 709 | @_register_lltd_specific_class(15) |
| 710 | class LLTDAttributeMachineName(LLTDAttribute): |
| 711 | name = "LLTD Attribute - Machine Name" |
| 712 | fields_desc = [ |
| 713 | FieldLenField("len", None, length_of="hostname", fmt="B"), |
| 714 | StrLenFieldUtf16("hostname", "", length_from=lambda pkt: pkt.len), |
| 715 | ] |
| 716 | |
| 717 | def mysummary(self): |
| 718 | return (f"Hostname: {self.hostname!r}", |
| 719 | [LLTD, LLTDAttributeHostID]) |
| 720 | |
| 721 | |
| 722 | @_register_lltd_specific_class(18) |
nothing calls this directly
no test coverage detected
searching dependent graphs…