aboutsummaryrefslogtreecommitdiff
path: root/Emby.Common.Implementations/Net
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2017-03-29 01:03:18 -0400
committerGitHub <noreply@github.com>2017-03-29 01:03:18 -0400
commit21705ae425535bcaf277ff28f2a8c341dbcb2948 (patch)
tree1e40408a0167aa2dca47ac07b16afa26e94d18d1 /Emby.Common.Implementations/Net
parent28108ef92ac44665177424f2f1ffc188fcbed721 (diff)
parent2dbe162e45269df00fb44fbe5340b72758399307 (diff)
Merge pull request #2552 from MediaBrowser/dev
Dev
Diffstat (limited to 'Emby.Common.Implementations/Net')
-rw-r--r--Emby.Common.Implementations/Net/UdpSocket.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Common.Implementations/Net/UdpSocket.cs b/Emby.Common.Implementations/Net/UdpSocket.cs
index a97b2e668..f9181eb6a 100644
--- a/Emby.Common.Implementations/Net/UdpSocket.cs
+++ b/Emby.Common.Implementations/Net/UdpSocket.cs
@@ -49,7 +49,7 @@ namespace Emby.Common.Implementations.Net
private void InitReceiveSocketAsyncEventArgs()
{
- var receiveBuffer = new byte[81920];
+ var receiveBuffer = new byte[8192];
_receiveSocketAsyncEventArgs.SetBuffer(receiveBuffer, 0, receiveBuffer.Length);
_receiveSocketAsyncEventArgs.Completed += _receiveSocketAsyncEventArgs_Completed;