-
Notifications
You must be signed in to change notification settings - Fork 562
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The current http proxy implementation has a few issues that I encount…
…ered when trying to implement behind a Squid proxy so we were unable to use it. This update should resolve the issues we encountered Bug: proxy connect packet is malformed due to a space after HTTP/1.1. Feature: Pass the host name so proxy host acls can be matched. Feature: Switch to the WebRequest.DefaultWebProxy which allows for overriding in app.settings file and falls back to the system proxy if not configured. Improvement: Use ordinal comparision for IndexOf on the proxy response.
- Loading branch information
Showing
1,281 changed files
with
1,266,578 additions
and
1,185,931 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,21 @@ | ||
# Make all the C# source be crlf | ||
generator/*rb text eol=crlf | ||
*.cs text eol=crlf | ||
*.bat text eol=crlf | ||
*.csproj text eol=crlf | ||
*.sln text eol=crlf | ||
*.cfg text | ||
*.pfx binary | ||
*.cer binary | ||
# Auto detect text files and perform LF normalization | ||
* text=auto | ||
|
||
*.bat text | ||
*.cer binary | ||
*.cfg text | ||
*.cs text | ||
*.csproj text | ||
*.def text | ||
*.erb text | ||
*.fmt text | ||
*.md text | ||
*.pfx binary | ||
*.ps1 text | ||
*.rb text | ||
*.sln text | ||
*.txt text | ||
*.xml text | ||
*.xsl text | ||
*.yml text | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
blank_issues_enabled: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
name: New issue template | ||
about: You should choose this one | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**DO NOT ASK FOR USAGE HELP HERE.** | ||
Please see [this page](https://quickfixengine.org/n/support/) | ||
to learn where you should ask for help. | ||
|
||
Github issues are **only** for engine bugs and feature requests, | ||
and only a couple people are notified. If you ask for regular usage help here, | ||
we will close your issue without helping. | ||
|
||
Ok? If you have an engine bug or feature request, | ||
then please delete this message and proceed with your report. Thanks! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# This workflow will build a .NET project | ||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net | ||
|
||
name: .NET | ||
|
||
on: | ||
push: | ||
branches: [ "master" ] | ||
pull_request: | ||
branches: [ "master" ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Setup .NET | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: 6.0.x | ||
- name: Restore dependencies | ||
run: dotnet restore | ||
- name: Build | ||
run: dotnet build --no-restore | ||
- name: Unit Test | ||
run: dotnet test --no-build --verbosity normal UnitTests | ||
- name: Acceptance | ||
run: dotnet test --no-build --verbosity normal AcceptanceTest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
[*.cs] | ||
|
||
# NUnit2003: Consider using Assert.That(expr, Is.True) instead of Assert.IsTrue(expr) | ||
dotnet_diagnostic.NUnit2003.severity = silent | ||
|
||
# NUnit2005: Consider using Assert.That(actual, Is.EqualTo(expected)) instead of Assert.AreEqual(expected, actual) | ||
dotnet_diagnostic.NUnit2005.severity = silent | ||
|
||
# NUnit2017: Consider using Assert.That(expr, Is.Null) instead of Assert.IsNull(expr) | ||
dotnet_diagnostic.NUnit2017.severity = silent | ||
|
||
# NUnit2019: Consider using Assert.That(expr, Is.Not.Null) instead of Assert.IsNotNull(expr) | ||
dotnet_diagnostic.NUnit2019.severity = silent |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.