mirror of
https://github.com/TalAloni/SMBLibrary.git
synced 2025-08-13 10:49:19 +02:00
Fix build error
This commit is contained in:
parent
2dfb158b63
commit
eeef8473f0
2 changed files with 7 additions and 2 deletions
|
@ -12,7 +12,7 @@ namespace SMBLibrary.Client
|
||||||
{
|
{
|
||||||
public interface ISMBClient
|
public interface ISMBClient
|
||||||
{
|
{
|
||||||
bool Connect(IPAddress serverAddress, SMBTransportType transport, bool forceExtendedSecurity = false);
|
bool Connect(IPAddress serverAddress, SMBTransportType transport);
|
||||||
|
|
||||||
void Disconnect();
|
void Disconnect();
|
||||||
|
|
||||||
|
|
|
@ -60,7 +60,12 @@ namespace SMBLibrary.Client
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool Connect(IPAddress serverAddress, SMBTransportType transport, bool forceExtendedSecurity = false)
|
public bool Connect(IPAddress serverAddress, SMBTransportType transport)
|
||||||
|
{
|
||||||
|
return Connect(serverAddress, transport, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
public bool Connect(IPAddress serverAddress, SMBTransportType transport, bool forceExtendedSecurity)
|
||||||
{
|
{
|
||||||
m_transport = transport;
|
m_transport = transport;
|
||||||
if (!m_isConnected)
|
if (!m_isConnected)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue