(self, protocol, port, name, secure=False)
| 106 | class Service: |
| 107 | |
| 108 | def __init__(self, protocol, port, name, secure=False): |
| 109 | self.target = None |
| 110 | self.protocol = protocol.lower() |
| 111 | self.port = int(port) |
| 112 | self.name = name |
| 113 | self.secure = secure |
| 114 | self.manual_commands = {} |
| 115 | |
| 116 | @final |
| 117 | def tag(self): |
nothing calls this directly
no outgoing calls
no test coverage detected