(self, label_id, sig_line)
| 317 | __slots__ = ["label_id", "bad_ttl", "sig"] |
| 318 | |
| 319 | def __init__(self, label_id, sig_line): |
| 320 | self.label_id = label_id |
| 321 | sig, bad_ttl = TCP_Signature.from_raw_sig(sig_line) |
| 322 | self.bad_ttl = bad_ttl |
| 323 | self.sig = sig |
| 324 | |
| 325 | |
| 326 | class HTTP_Record(object): |
nothing calls this directly
no test coverage detected