(aspId string)
| 1149 | } |
| 1150 | |
| 1151 | func (us *UdpServer) FindPluginHandler(aspId string) plugins.PluginHandler { |
| 1152 | us.pluginHandlerMapMutex.Lock() |
| 1153 | defer us.pluginHandlerMapMutex.Unlock() |
| 1154 | |
| 1155 | handler, found := us.pluginHandlerMap[aspId] |
| 1156 | if !found { |
| 1157 | return nil |
| 1158 | } |
| 1159 | return handler |
| 1160 | } |
| 1161 | |
| 1162 | // DHP |
| 1163 | func (s *UdpServer) AddDEPeer(device *core.UdpPeer) { |
no outgoing calls
no test coverage detected