update live stream buffers

This commit is contained in:
Luke Pulverenti
2017-06-01 02:25:07 -04:00
parent 0f1d253278
commit f96e5c84a2
6 changed files with 200 additions and 14 deletions

View File

@@ -16,6 +16,8 @@ namespace MediaBrowser.Model.Net
Task<SocketReceiveResult> ReceiveAsync(byte[] buffer, int offset, int count, CancellationToken cancellationToken);
int Receive(byte[] buffer, int offset, int count);
IAsyncResult BeginReceive(byte[] buffer, int offset, int count, AsyncCallback callback);
SocketReceiveResult EndReceive(IAsyncResult result);