Navigation Menu

Skip to content

Commit

Permalink
Increase ServiceHelper Timeout for DVBs scanning until speedup code f…
Browse files Browse the repository at this point in the history
…or TsWriter.
  • Loading branch information
Sebastiii authored and morpheusxx committed Feb 24, 2013
1 parent 852c1e6 commit 5a41893
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions TvEngine3/Mediaportal/TV/Server/TvControl/ServiceHelper.cs
Expand Up @@ -20,17 +20,17 @@ public static class ServiceHelper
private const string NetTcpBindingName = "netTcpBinding";
private const string DefaultBasicHttpBindingName = "defaultBasicHttpBinding";

private static readonly TimeSpan TcpReceiveTimeout = new TimeSpan(0, 0, 0, 300);
private static readonly TimeSpan TcpSendTimeout = new TimeSpan(0, 0, 0, 300);
private static readonly TimeSpan TcpCloseTimeout = new TimeSpan(0, 0, 0, 300);
private static readonly TimeSpan TcpOpenTimeout = new TimeSpan(0, 0, 0, 300);
private static readonly TimeSpan TcpInactivityTimeout = new TimeSpan(0, 0, 0, 300);
private static readonly TimeSpan TcpReceiveTimeout = new TimeSpan(0, 0, 0, 3600);
private static readonly TimeSpan TcpSendTimeout = new TimeSpan(0, 0, 0, 3600);
private static readonly TimeSpan TcpCloseTimeout = new TimeSpan(0, 0, 0, 3600);
private static readonly TimeSpan TcpOpenTimeout = new TimeSpan(0, 0, 0, 3600);
private static readonly TimeSpan TcpInactivityTimeout = new TimeSpan(0, 0, 0, 3600);

private static readonly TimeSpan HttpReceiveTimeout = new TimeSpan(0, 0, 0, 300);
private static readonly TimeSpan HttpSendTimeout = new TimeSpan(0, 0, 0, 300);
private static readonly TimeSpan HttpCloseTimeout = new TimeSpan(0, 0, 0, 300);
private static readonly TimeSpan HttpOpenTimeout = new TimeSpan(0, 0, 0, 300);
private static readonly TimeSpan HttpInactivityTimeout = new TimeSpan(0, 0, 0, 300);
private static readonly TimeSpan HttpReceiveTimeout = new TimeSpan(0, 0, 0, 3600);
private static readonly TimeSpan HttpSendTimeout = new TimeSpan(0, 0, 0, 3600);
private static readonly TimeSpan HttpCloseTimeout = new TimeSpan(0, 0, 0, 3600);
private static readonly TimeSpan HttpOpenTimeout = new TimeSpan(0, 0, 0, 3600);
private static readonly TimeSpan HttpInactivityTimeout = new TimeSpan(0, 0, 0, 3600);

/// <summary>
///
Expand Down

0 comments on commit 5a41893

Please sign in to comment.