Merge pull request #659 from PROger4ever/master

Make Session constructor public for custom ISessionStore imlementations
This commit is contained in:
Andres G. Aragoneses 2017-12-18 00:09:43 +08:00 committed by GitHub
commit 687eca968a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -73,7 +73,7 @@ namespace TLSharp.Core
private ISessionStore _store;
private Session(ISessionStore store)
public Session(ISessionStore store)
{
random = new Random();
_store = store;