(useProxy bool)
| 1666 | } |
| 1667 | |
| 1668 | func getSystemProxy(useProxy bool) *dto.SystemProxy { |
| 1669 | if !useProxy { |
| 1670 | return nil |
| 1671 | } |
| 1672 | settingService := NewISettingService() |
| 1673 | systemProxy, _ := settingService.GetSystemProxy() |
| 1674 | return systemProxy |
| 1675 | } |
| 1676 | |
| 1677 | func hasHttp3(params []string) bool { |
| 1678 | for _, param := range params { |
no test coverage detected