(cls, _pkt=None, *args, **kargs)
| 655 | |
| 656 | @classmethod |
| 657 | def dispatch_hook(cls, _pkt=None, *args, **kargs): |
| 658 | # type: (Optional[Any], *Any, **Any) -> Type[Packet] |
| 659 | if _pkt and struct.unpack("!H", _pkt[2:4])[0] == 0x880b: |
| 660 | return GRE_PPTP |
| 661 | return cls |
| 662 | |
| 663 | def post_build(self, p, pay): |
| 664 | # type: (bytes, bytes) -> bytes |