Remove references to WebListener
This commit is contained in:
parent
fd82d0214e
commit
76255bc7f4
|
|
@ -3,7 +3,7 @@ HttpSysServer
|
||||||
|
|
||||||
| AppVeyor | Travis |
|
| AppVeyor | Travis |
|
||||||
| ---- | ----
|
| ---- | ----
|
||||||
| [](https://ci.appveyor.com/project/aspnetci/WebListener/branch/dev) | [](https://travis-ci.org/aspnet/WebListener) |
|
| [](https://ci.appveyor.com/project/aspnetci/WebListener/branch/dev) | [](https://travis-ci.org/aspnet/HttpSysServer) |
|
||||||
|
|
||||||
This repo contains a web server for ASP.NET Core based on the Windows [Http Server API](https://msdn.microsoft.com/en-us/library/windows/desktop/aa364510.aspx).
|
This repo contains a web server for ASP.NET Core based on the Windows [Http Server API](https://msdn.microsoft.com/en-us/library/windows/desktop/aa364510.aspx).
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@ namespace Microsoft.AspNetCore.Server.HttpSys
|
||||||
IHttpResponseFeature,
|
IHttpResponseFeature,
|
||||||
IHttpSendFileFeature,
|
IHttpSendFileFeature,
|
||||||
ITlsConnectionFeature,
|
ITlsConnectionFeature,
|
||||||
// ITlsTokenBindingFeature, TODO: https://github.com/aspnet/WebListener/issues/231
|
// ITlsTokenBindingFeature, TODO: https://github.com/aspnet/HttpSysServer/issues/231
|
||||||
IHttpBufferingFeature,
|
IHttpBufferingFeature,
|
||||||
IHttpRequestLifetimeFeature,
|
IHttpRequestLifetimeFeature,
|
||||||
IHttpAuthenticationFeature,
|
IHttpAuthenticationFeature,
|
||||||
|
|
@ -332,7 +332,7 @@ namespace Microsoft.AspNetCore.Server.HttpSys
|
||||||
{
|
{
|
||||||
return Request.IsHttps ? this : null;
|
return Request.IsHttps ? this : null;
|
||||||
}
|
}
|
||||||
/* TODO: https://github.com/aspnet/WebListener/issues/231
|
/* TODO: https://github.com/aspnet/HttpSysServer/issues/231
|
||||||
byte[] ITlsTokenBindingFeature.GetProvidedTokenBindingId() => Request.GetProvidedTokenBindingId();
|
byte[] ITlsTokenBindingFeature.GetProvidedTokenBindingId() => Request.GetProvidedTokenBindingId();
|
||||||
|
|
||||||
byte[] ITlsTokenBindingFeature.GetReferredTokenBindingId() => Request.GetReferredTokenBindingId();
|
byte[] ITlsTokenBindingFeature.GetReferredTokenBindingId() => Request.GetReferredTokenBindingId();
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ namespace Microsoft.AspNetCore.Server.HttpSys
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Contains helpers for dealing with TLS token binding.
|
/// Contains helpers for dealing with TLS token binding.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
// TODO: https://github.com/aspnet/WebListener/issues/231
|
// TODO: https://github.com/aspnet/HttpSysServer/issues/231
|
||||||
internal unsafe static class TokenBindingUtil
|
internal unsafe static class TokenBindingUtil
|
||||||
{
|
{
|
||||||
private static byte[] ExtractIdentifierBlob(TOKENBINDING_RESULT_DATA* pTokenBindingResultData)
|
private static byte[] ExtractIdentifierBlob(TOKENBINDING_RESULT_DATA* pTokenBindingResultData)
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@ namespace Microsoft.AspNetCore.Server.HttpSys
|
||||||
private NativeRequestContext _nativeRequestContext;
|
private NativeRequestContext _nativeRequestContext;
|
||||||
|
|
||||||
private X509Certificate2 _clientCert;
|
private X509Certificate2 _clientCert;
|
||||||
// TODO: https://github.com/aspnet/WebListener/issues/231
|
// TODO: https://github.com/aspnet/HttpSysServer/issues/231
|
||||||
// private byte[] _providedTokenBindingId;
|
// private byte[] _providedTokenBindingId;
|
||||||
// private byte[] _referredTokenBindingId;
|
// private byte[] _referredTokenBindingId;
|
||||||
|
|
||||||
|
|
@ -81,7 +81,7 @@ namespace Microsoft.AspNetCore.Server.HttpSys
|
||||||
|
|
||||||
User = nativeRequestContext.GetUser();
|
User = nativeRequestContext.GetUser();
|
||||||
|
|
||||||
// GetTlsTokenBindingInfo(); TODO: https://github.com/aspnet/WebListener/issues/231
|
// GetTlsTokenBindingInfo(); TODO: https://github.com/aspnet/HttpSysServer/issues/231
|
||||||
|
|
||||||
// Finished directly accessing the HTTP_REQUEST structure.
|
// Finished directly accessing the HTTP_REQUEST structure.
|
||||||
_nativeRequestContext.ReleasePins();
|
_nativeRequestContext.ReleasePins();
|
||||||
|
|
|
||||||
|
|
@ -375,7 +375,7 @@ namespace Microsoft.AspNetCore.Server.HttpSys
|
||||||
{
|
{
|
||||||
// A single write with the whole content-length. Http.Sys will set the content-length for us in this scenario.
|
// A single write with the whole content-length. Http.Sys will set the content-length for us in this scenario.
|
||||||
// If we don't remove it then range requests served from cache will have two.
|
// If we don't remove it then range requests served from cache will have two.
|
||||||
// https://github.com/aspnet/WebListener/issues/167
|
// https://github.com/aspnet/HttpSysServer/issues/167
|
||||||
ContentLength = null;
|
ContentLength = null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@ namespace Microsoft.AspNetCore.Server.HttpSys
|
||||||
{ typeof(IHttpResponseFeature), _identityFunc },
|
{ typeof(IHttpResponseFeature), _identityFunc },
|
||||||
{ typeof(IHttpSendFileFeature), _identityFunc },
|
{ typeof(IHttpSendFileFeature), _identityFunc },
|
||||||
{ typeof(ITlsConnectionFeature), ctx => ctx.GetTlsConnectionFeature() },
|
{ typeof(ITlsConnectionFeature), ctx => ctx.GetTlsConnectionFeature() },
|
||||||
// { typeof(ITlsTokenBindingFeature), ctx => ctx.GetTlsTokenBindingFeature() }, TODO: https://github.com/aspnet/WebListener/issues/231
|
// { typeof(ITlsTokenBindingFeature), ctx => ctx.GetTlsTokenBindingFeature() }, TODO: https://github.com/aspnet/HttpSysServer/issues/231
|
||||||
{ typeof(IHttpBufferingFeature), _identityFunc },
|
{ typeof(IHttpBufferingFeature), _identityFunc },
|
||||||
{ typeof(IHttpRequestLifetimeFeature), _identityFunc },
|
{ typeof(IHttpRequestLifetimeFeature), _identityFunc },
|
||||||
{ typeof(IHttpUpgradeFeature), _identityFunc },
|
{ typeof(IHttpUpgradeFeature), _identityFunc },
|
||||||
|
|
|
||||||
|
|
@ -156,7 +156,7 @@ namespace Microsoft.AspNetCore.Server.HttpSys.Listener
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[ConditionalFact(Skip = "https://github.com/aspnet/WebListener/issues/263")]
|
[ConditionalFact(Skip = "https://github.com/aspnet/HttpSysServer/issues/263")]
|
||||||
public async Task ResponseBody_WriteContentLengthTooMuchWritten_Throws()
|
public async Task ResponseBody_WriteContentLengthTooMuchWritten_Throws()
|
||||||
{
|
{
|
||||||
string address;
|
string address;
|
||||||
|
|
@ -510,7 +510,7 @@ namespace Microsoft.AspNetCore.Server.HttpSys.Listener
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[ConditionalFact(Skip = "https://github.com/aspnet/WebListener/issues/263")]
|
[ConditionalFact(Skip = "https://github.com/aspnet/HttpSysServer/issues/263")]
|
||||||
public async Task ResponseBodyWriteExceptions_ClientDisconnectsBeforeSecondWriteAsync_WriteThrows()
|
public async Task ResponseBodyWriteExceptions_ClientDisconnectsBeforeSecondWriteAsync_WriteThrows()
|
||||||
{
|
{
|
||||||
string address;
|
string address;
|
||||||
|
|
|
||||||
|
|
@ -504,7 +504,7 @@ namespace Microsoft.AspNetCore.Server.HttpSys.Listener
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[ConditionalFact(Skip = "Tests hanging: https://github.com/aspnet/WebListener/issues/270")]
|
[ConditionalFact(Skip = "Tests hanging: https://github.com/aspnet/HttpSysServer/issues/270")]
|
||||||
public async Task ResponseSendFileExceptions_ClientDisconnectsBeforeSecondSend_SendThrows()
|
public async Task ResponseSendFileExceptions_ClientDisconnectsBeforeSecondSend_SendThrows()
|
||||||
{
|
{
|
||||||
string address;
|
string address;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue