-
Notifications
You must be signed in to change notification settings - Fork 5.3k
[QUIC] API Update #49823
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[QUIC] API Update #49823
Changes from 1 commit
6bf36e4
e96522e
b92bd1d
7aa745c
6a132c5
1d0d98c
68a5c48
851dc1b
78e3981
7ad5163
f67ed0d
204f4fa
72ea176
5d3884f
c0f896f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,6 +7,7 @@ | |
|
|
||
| namespace System.Net.Quic.Tests | ||
| { | ||
| // TODO: why do we hawe 2 base clase with some duplicated methods? | ||
| public class MsQuicTestBase | ||
| { | ||
| public SslServerAuthenticationOptions GetSslServerAuthenticationOptions() | ||
|
|
@@ -15,6 +16,7 @@ public SslServerAuthenticationOptions GetSslServerAuthenticationOptions() | |
| { | ||
| ApplicationProtocols = new List<SslApplicationProtocol>() { new SslApplicationProtocol("quictest") }, | ||
| // TODO: use a cert. MsQuic currently only allows certs that are trusted. | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What is the cause of this trusted limitation? Is it a requirement of QUIC, or because we haven't added configuration to ignore invalid certificates yet?
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. we may need to plumb custom validation callback to managed code. I'm not sure if that was already done.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| //ServerCertificate = System.Net.Test.Common.Configuration.Certificates.GetServerCertificate() | ||
| }; | ||
| } | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@scalablecory could we reference the System.Net.Experimental.Quic here instead now? https://github.com/dotnet/runtimelab/tree/feature/System.Net.Experimental.MsQuic
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You won't need that package for .NET 6.