| 134 | } |
| 135 | |
| 136 | type joinServerHTTPClient struct { |
| 137 | clientProvider httpclient.Provider |
| 138 | clientOpts []httpclient.Option |
| 139 | protocol ProtocolVersion |
| 140 | scheme, |
| 141 | dnsSuffix, fqdn string |
| 142 | port uint32 |
| 143 | paths jsRPCPaths |
| 144 | headers map[string]string |
| 145 | username, password string |
| 146 | senderNSID *types.EUI64 |
| 147 | } |
| 148 | |
| 149 | func (cl joinServerHTTPClient) exchange( |
| 150 | ctx context.Context, pathFunc func(jsRPCPaths) string, pld, res any, |
nothing calls this directly
no outgoing calls
no test coverage detected