mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 08:55:56 +08:00
oshttp send: modern TAP is still just a complex wrapper of 'obsolete' APM hidding at IL level, so just use the 'obsolete'
This commit is contained in:
@@ -26,7 +26,6 @@ namespace OSHttpServer
|
||||
/// </example>
|
||||
public interface IHttpResponse
|
||||
{
|
||||
event EventHandler<BandWitdhEventArgs> BandWitdhEvent;
|
||||
/// <summary>
|
||||
/// The body stream is used to cache the body contents
|
||||
/// before sending everything to the client. It's the simplest
|
||||
@@ -145,19 +144,4 @@ namespace OSHttpServer
|
||||
/// </summary>
|
||||
KeepAlive
|
||||
}
|
||||
|
||||
public class BandWitdhEventArgs : EventArgs
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets received request.
|
||||
/// </summary>
|
||||
public int Result;
|
||||
public int Request;
|
||||
|
||||
public BandWitdhEventArgs(int request)
|
||||
{
|
||||
Request = request;
|
||||
Result = request;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user