| 514 | |
| 515 | |
| 516 | class TCPPortMapperClient(PartialPortMapperClient, RawTCPClient): |
| 517 | |
| 518 | def __init__(self, host): |
| 519 | RawTCPClient.__init__(self, host, PMAP_PROG, PMAP_VERS, PMAP_PORT) |
| 520 | PartialPortMapperClient.__init__(self) |
| 521 | |
| 522 | |
| 523 | class UDPPortMapperClient(PartialPortMapperClient, RawUDPClient): |
no outgoing calls
no test coverage detected