(self, host)
| 523 | class UDPPortMapperClient(PartialPortMapperClient, RawUDPClient): |
| 524 | |
| 525 | def __init__(self, host): |
| 526 | RawUDPClient.__init__(self, host, PMAP_PROG, PMAP_VERS, PMAP_PORT) |
| 527 | PartialPortMapperClient.__init__(self) |
| 528 | |
| 529 | |
| 530 | class BroadcastUDPPortMapperClient(PartialPortMapperClient, RawBroadcastUDPClient): |