(self, pkt, s, val)
| 422 | return s, None |
| 423 | |
| 424 | def addfield(self, pkt, s, val): |
| 425 | # type: (Packet, bytes, Any) -> bytes |
| 426 | if self._evalcond(pkt): |
| 427 | return self.fld.addfield(pkt, s, val) |
| 428 | else: |
| 429 | return s |
| 430 | |
| 431 | def __getattr__(self, attr): |
| 432 | # type: (str) -> Any |