(ctx context.Context, callbackID string)
| 133 | } |
| 134 | |
| 135 | func (h *Host) callbackCallerPluginID(ctx context.Context, callbackID string) string { |
| 136 | if pluginID := hostCallbackPluginIDFromContext(ctx); pluginID != "" { |
| 137 | return pluginID |
| 138 | } |
| 139 | return h.callbackContextPluginID(callbackID) |
| 140 | } |
| 141 | |
| 142 | func (h *Host) callHostHTTPDo(ctx context.Context, request []byte) ([]byte, error) { |
| 143 | httpReq, callbackID, errDecode := decodeHostHTTPRequestWithCallbackID(request) |
no test coverage detected