Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into NETCore3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
LiveOrDevTrying committed Jun 26, 2023
2 parents 455417f + 14846de commit 31c8399
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions Tcp.NET.Server/TcpNETServerBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,14 @@ public abstract class TcpNETServerBase<T, U, V, W, X, Y, Z> :
{
protected Timer _timerPing;
protected bool _isPingRunning;
protected byte[] _certificate;
protected string _certificatePassword;

public TcpNETServerBase(W parameters) : base(parameters)
{
}
public TcpNETServerBase(W parameters,
byte[] certificate,
string certificatePassword) : base(parameters)
string certificatePassword) : base(parameters, certificate, certificatePassword)
{
_certificate = certificate;
_certificatePassword = certificatePassword;
}

protected override void OnServerEvent(object sender, ServerEventArgs args)
Expand Down

0 comments on commit 31c8399

Please sign in to comment.