Resolve the endpoint to an address/port. This is called only on socket connection.
(self)
| 153 | return socket.AF_UNSPEC |
| 154 | |
| 155 | def resolve(self): |
| 156 | """ |
| 157 | Resolve the endpoint to an address/port. This is called |
| 158 | only on socket connection. |
| 159 | """ |
| 160 | raise NotImplementedError() |
| 161 | |
| 162 | |
| 163 | class EndPointFactory(object): |
no outgoing calls
no test coverage detected