handle NS_ACTION_RESOLVE
(self, env, addr)
| 26 | self._sendProbeMatch(services, env.getMessageId(), addr) |
| 27 | |
| 28 | def _handle_resolve(self, env, addr): |
| 29 | "handle NS_ACTION_RESOLVE" |
| 30 | if env.getEPR() in self._localServices: |
| 31 | service = self._localServices[env.getEPR()] |
| 32 | self._sendResolveMatch(service, env.getMessageId(), addr) |
| 33 | |
| 34 | |
| 35 | def _networkAddressAdded(self, addr): |
nothing calls this directly
no test coverage detected