(self, mapping)
| 488 | self.unpacker = PortMapperUnpacker('') |
| 489 | |
| 490 | def set(self, mapping): |
| 491 | return self.make_call(PMAP_VERS.PMAPPROC_SET, mapping, |
| 492 | self.packer.pack_mapping, |
| 493 | self.unpacker.unpack_uint) |
| 494 | |
| 495 | def unset(self, mapping): |
| 496 | return self.make_call(PMAP_VERS.PMAPPROC_UNSET, mapping, |
no test coverage detected