You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
661 lines
23 KiB
661 lines
23 KiB
8 years ago
|
// This code is derived from jcifs smb client library <jcifs at samba dot org>
|
||
|
// Ported by J. Arturo <webmaster at komodosoft dot net>
|
||
|
//
|
||
|
// This library is free software; you can redistribute it and/or
|
||
|
// modify it under the terms of the GNU Lesser General Public
|
||
|
// License as published by the Free Software Foundation; either
|
||
|
// version 2.1 of the License, or (at your option) any later version.
|
||
|
//
|
||
|
// This library is distributed in the hope that it will be useful,
|
||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||
|
// Lesser General Public License for more details.
|
||
|
//
|
||
|
// You should have received a copy of the GNU Lesser General Public
|
||
|
// License along with this library; if not, write to the Free Software
|
||
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.IO;
|
||
|
using System.Net;
|
||
|
using System.Net.Sockets;
|
||
|
using System.Linq;
|
||
|
using System.Threading;
|
||
|
using SharpCifs.Util;
|
||
|
using SharpCifs.Util.Sharpen;
|
||
|
|
||
|
using Thread = SharpCifs.Util.Sharpen.Thread;
|
||
|
|
||
|
namespace SharpCifs.Netbios
|
||
|
{
|
||
|
internal class NameServiceClient : IRunnable
|
||
|
{
|
||
|
internal const int DefaultSoTimeout = 5000;
|
||
|
|
||
|
internal const int DefaultRcvBufSize = 576;
|
||
|
|
||
|
internal const int DefaultSndBufSize = 576;
|
||
|
|
||
|
internal const int NameServiceUdpPort = 137;
|
||
|
|
||
|
internal const int DefaultRetryCount = 2;
|
||
|
|
||
|
internal const int DefaultRetryTimeout = 3000;
|
||
|
|
||
|
internal const int ResolverLmhosts = 1;
|
||
|
|
||
|
internal const int ResolverBcast = 2;
|
||
|
|
||
|
internal const int ResolverWins = 3;
|
||
|
|
||
7 years ago
|
private static readonly int SndBufSize = Config.GetInt("jcifs.netbios.snd_buf_size"
|
||
|
, DefaultSndBufSize);
|
||
8 years ago
|
|
||
7 years ago
|
private static readonly int RcvBufSize = Config.GetInt("jcifs.netbios.rcv_buf_size"
|
||
|
, DefaultRcvBufSize);
|
||
8 years ago
|
|
||
7 years ago
|
private static readonly int SoTimeout = Config.GetInt("jcifs.netbios.soTimeout",
|
||
|
DefaultSoTimeout);
|
||
8 years ago
|
|
||
7 years ago
|
private static readonly int RetryCount = Config.GetInt("jcifs.netbios.retryCount"
|
||
|
, DefaultRetryCount);
|
||
8 years ago
|
|
||
7 years ago
|
private static readonly int RetryTimeout = Config.GetInt("jcifs.netbios.retryTimeout"
|
||
|
, DefaultRetryTimeout);
|
||
8 years ago
|
|
||
7 years ago
|
private static readonly int Lport = Config.GetInt("jcifs.netbios.lport", 137);
|
||
8 years ago
|
|
||
7 years ago
|
private static readonly IPAddress Laddr = Config.GetInetAddress("jcifs.netbios.laddr"
|
||
|
, null);
|
||
8 years ago
|
|
||
7 years ago
|
private static readonly string Ro = Config.GetProperty("jcifs.resolveOrder");
|
||
8 years ago
|
|
||
|
private static LogStream _log = LogStream.GetInstance();
|
||
|
|
||
|
private readonly object _lock = new object();
|
||
|
|
||
|
private int _lport;
|
||
|
|
||
|
private int _closeTimeout;
|
||
|
|
||
|
private byte[] _sndBuf;
|
||
|
|
||
|
private byte[] _rcvBuf;
|
||
|
|
||
7 years ago
|
private SocketEx _socket;
|
||
8 years ago
|
|
||
|
private Hashtable _responseTable = new Hashtable();
|
||
|
|
||
|
private Thread _thread;
|
||
7 years ago
|
|
||
8 years ago
|
private int _nextNameTrnId;
|
||
|
|
||
|
private int[] _resolveOrder;
|
||
|
|
||
|
private bool _waitResponse = true;
|
||
|
|
||
|
private AutoResetEvent _autoResetWaitReceive;
|
||
|
|
||
|
internal IPAddress laddr;
|
||
|
|
||
|
internal IPAddress Baddr;
|
||
|
|
||
|
public NameServiceClient()
|
||
|
: this(Lport, Laddr)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
internal NameServiceClient(int lport, IPAddress laddr)
|
||
|
{
|
||
|
this._lport = lport;
|
||
|
|
||
7 years ago
|
this.laddr = laddr
|
||
|
?? Config.GetLocalHost()
|
||
|
?? Extensions.GetAddressesByName(Dns.GetHostName()).FirstOrDefault();
|
||
8 years ago
|
|
||
|
try
|
||
|
{
|
||
7 years ago
|
Baddr = Config.GetInetAddress("jcifs.netbios.baddr", Extensions.GetAddressByName("255.255.255.255"));
|
||
8 years ago
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
_sndBuf = new byte[SndBufSize];
|
||
|
_rcvBuf = new byte[RcvBufSize];
|
||
|
|
||
|
|
||
|
if (string.IsNullOrEmpty(Ro))
|
||
|
{
|
||
|
if (NbtAddress.GetWinsAddress() == null)
|
||
|
{
|
||
|
_resolveOrder = new int[2];
|
||
|
_resolveOrder[0] = ResolverLmhosts;
|
||
|
_resolveOrder[1] = ResolverBcast;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
_resolveOrder = new int[3];
|
||
|
_resolveOrder[0] = ResolverLmhosts;
|
||
|
_resolveOrder[1] = ResolverWins;
|
||
|
_resolveOrder[2] = ResolverBcast;
|
||
|
}
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
int[] tmp = new int[3];
|
||
|
StringTokenizer st = new StringTokenizer(Ro, ",");
|
||
|
int i = 0;
|
||
|
while (st.HasMoreTokens())
|
||
|
{
|
||
|
string s = st.NextToken().Trim();
|
||
|
if (Runtime.EqualsIgnoreCase(s, "LMHOSTS"))
|
||
|
{
|
||
|
tmp[i++] = ResolverLmhosts;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
if (Runtime.EqualsIgnoreCase(s, "WINS"))
|
||
|
{
|
||
|
if (NbtAddress.GetWinsAddress() == null)
|
||
|
{
|
||
|
if (_log.Level > 1)
|
||
|
{
|
||
7 years ago
|
_log.WriteLine("NetBIOS resolveOrder specifies WINS however the " + "jcifs.netbios.wins property has not been set"
|
||
|
);
|
||
8 years ago
|
}
|
||
|
continue;
|
||
|
}
|
||
|
tmp[i++] = ResolverWins;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
if (Runtime.EqualsIgnoreCase(s, "BCAST"))
|
||
|
{
|
||
|
tmp[i++] = ResolverBcast;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
if (Runtime.EqualsIgnoreCase(s, "DNS"))
|
||
|
{
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
// skip
|
||
|
if (_log.Level > 1)
|
||
|
{
|
||
|
_log.WriteLine("unknown resolver method: " + s);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
_resolveOrder = new int[i];
|
||
|
Array.Copy(tmp, 0, _resolveOrder, 0, i);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
internal virtual int GetNextNameTrnId()
|
||
|
{
|
||
|
if ((++_nextNameTrnId & unchecked(0xFFFF)) == 0)
|
||
|
{
|
||
|
_nextNameTrnId = 1;
|
||
|
}
|
||
|
return _nextNameTrnId;
|
||
|
}
|
||
|
|
||
|
/// <exception cref="System.IO.IOException"></exception>
|
||
|
internal virtual void EnsureOpen(int timeout)
|
||
|
{
|
||
|
_closeTimeout = 0;
|
||
|
if (SoTimeout != 0)
|
||
|
{
|
||
|
_closeTimeout = Math.Max(SoTimeout, timeout);
|
||
|
}
|
||
|
// If socket is still good, the new closeTimeout will
|
||
|
// be ignored; see tryClose comment.
|
||
7 years ago
|
if (_socket == null)
|
||
8 years ago
|
{
|
||
7 years ago
|
_socket = new SocketEx(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);
|
||
|
|
||
|
//IPAddress.`Address` property deleted
|
||
|
//_socket.Bind(new IPEndPoint(laddr.Address, _lport));
|
||
|
_socket.Bind(new IPEndPoint(laddr, _lport));
|
||
8 years ago
|
|
||
|
if (_waitResponse)
|
||
|
{
|
||
7 years ago
|
_thread = new Thread(this); //new Sharpen.Thread(this, "JCIFS-NameServiceClient");
|
||
8 years ago
|
_thread.SetDaemon(true);
|
||
7 years ago
|
_thread.Start();
|
||
8 years ago
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
internal virtual void TryClose()
|
||
|
{
|
||
|
lock (_lock)
|
||
|
{
|
||
7 years ago
|
if (_socket != null)
|
||
8 years ago
|
{
|
||
7 years ago
|
//Socket.`Close` method deleted
|
||
|
//_socket.Close();
|
||
|
_socket.Dispose();
|
||
|
_socket = null;
|
||
8 years ago
|
}
|
||
7 years ago
|
_thread = null;
|
||
8 years ago
|
|
||
|
if (_waitResponse)
|
||
|
{
|
||
|
_responseTable.Clear();
|
||
7 years ago
|
} else
|
||
8 years ago
|
{
|
||
|
_autoResetWaitReceive.Set();
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public virtual void Run()
|
||
|
{
|
||
|
int nameTrnId;
|
||
|
NameServicePacket response;
|
||
|
|
||
|
try
|
||
|
{
|
||
|
|
||
7 years ago
|
while (_thread == Thread.CurrentThread())
|
||
|
{
|
||
|
_socket.SoTimeOut = _closeTimeout;
|
||
7 years ago
|
|
||
7 years ago
|
int len = _socket.Receive(_rcvBuf, 0, RcvBufSize);
|
||
8 years ago
|
|
||
|
if (_log.Level > 3)
|
||
|
{
|
||
|
_log.WriteLine("NetBIOS: new data read from socket");
|
||
|
}
|
||
|
nameTrnId = NameServicePacket.ReadNameTrnId(_rcvBuf, 0);
|
||
|
response = (NameServicePacket)_responseTable.Get(nameTrnId);
|
||
|
|
||
|
|
||
|
if (response == null || response.Received)
|
||
|
{
|
||
|
continue;
|
||
|
}
|
||
|
|
||
|
lock (response)
|
||
|
{
|
||
|
response.ReadWireFormat(_rcvBuf, 0);
|
||
|
|
||
|
if (_log.Level > 3)
|
||
|
{
|
||
|
_log.WriteLine(response);
|
||
7 years ago
|
Hexdump.ToHexdump(_log, _rcvBuf, 0, len);
|
||
8 years ago
|
}
|
||
|
|
||
|
if (response.IsResponse)
|
||
|
{
|
||
|
response.Received = true;
|
||
|
|
||
|
Runtime.Notify(response);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
7 years ago
|
|
||
8 years ago
|
}
|
||
|
catch (TimeoutException) { }
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
if (_log.Level > 2)
|
||
|
{
|
||
|
Runtime.PrintStackTrace(ex, _log);
|
||
|
}
|
||
|
}
|
||
|
finally
|
||
|
{
|
||
|
TryClose();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/// <exception cref="System.IO.IOException"></exception>
|
||
7 years ago
|
internal virtual void Send(NameServicePacket request, NameServicePacket response,
|
||
|
int timeout)
|
||
8 years ago
|
{
|
||
|
int nid = 0;
|
||
|
int max = NbtAddress.Nbns.Length;
|
||
|
if (max == 0)
|
||
|
{
|
||
|
max = 1;
|
||
|
}
|
||
|
|
||
|
lock (response)
|
||
|
{
|
||
|
|
||
|
while (max-- > 0)
|
||
|
{
|
||
|
try
|
||
|
{
|
||
|
lock (_lock)
|
||
|
{
|
||
|
request.NameTrnId = GetNextNameTrnId();
|
||
|
nid = request.NameTrnId;
|
||
|
response.Received = false;
|
||
|
_responseTable.Put(nid, response);
|
||
|
EnsureOpen(timeout + 1000);
|
||
|
int requestLenght = request.WriteWireFormat(_sndBuf, 0);
|
||
7 years ago
|
_socket.Send(_sndBuf, 0, requestLenght, new IPEndPoint(request.Addr, _lport));
|
||
8 years ago
|
if (_log.Level > 3)
|
||
|
{
|
||
|
_log.WriteLine(request);
|
||
|
Hexdump.ToHexdump(_log, _sndBuf, 0, requestLenght);
|
||
|
}
|
||
7 years ago
|
|
||
7 years ago
|
}
|
||
8 years ago
|
if (_waitResponse)
|
||
|
{
|
||
|
long start = Runtime.CurrentTimeMillis();
|
||
|
while (timeout > 0)
|
||
|
{
|
||
|
Runtime.Wait(response, timeout);
|
||
|
if (response.Received && request.QuestionType == response.RecordType)
|
||
|
{
|
||
7 years ago
|
return;
|
||
8 years ago
|
}
|
||
|
response.Received = false;
|
||
|
timeout -= (int)(Runtime.CurrentTimeMillis() - start);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
catch (Exception ie)
|
||
|
{
|
||
|
throw new IOException(ie.Message);
|
||
|
}
|
||
|
finally
|
||
|
{
|
||
7 years ago
|
//Sharpen.Collections.Remove(responseTable, nid);
|
||
8 years ago
|
if (_waitResponse)
|
||
7 years ago
|
{
|
||
8 years ago
|
_responseTable.Remove(nid);
|
||
7 years ago
|
}
|
||
8 years ago
|
}
|
||
|
if (_waitResponse)
|
||
|
{
|
||
|
lock (_lock)
|
||
|
{
|
||
|
if (NbtAddress.IsWins(request.Addr) == false)
|
||
|
{
|
||
|
break;
|
||
|
}
|
||
|
if (request.Addr == NbtAddress.GetWinsAddress())
|
||
|
{
|
||
|
NbtAddress.SwitchWins();
|
||
|
}
|
||
|
request.Addr = NbtAddress.GetWinsAddress();
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/// <exception cref="UnknownHostException"></exception>
|
||
|
internal virtual NbtAddress[] GetAllByName(Name name, IPAddress addr)
|
||
|
{
|
||
|
int n;
|
||
|
NameQueryRequest request = new NameQueryRequest(name);
|
||
|
NameQueryResponse response = new NameQueryResponse();
|
||
|
request.Addr = addr ?? NbtAddress.GetWinsAddress();
|
||
7 years ago
|
request.IsBroadcast = request.Addr == null;
|
||
8 years ago
|
if (request.IsBroadcast)
|
||
|
{
|
||
|
request.Addr = Baddr;
|
||
|
n = RetryCount;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
request.IsBroadcast = false;
|
||
|
n = 1;
|
||
|
}
|
||
|
do
|
||
|
{
|
||
|
try
|
||
|
{
|
||
|
Send(request, response, RetryTimeout);
|
||
|
}
|
||
|
catch (IOException ioe)
|
||
|
{
|
||
|
if (_log.Level > 1)
|
||
|
{
|
||
|
Runtime.PrintStackTrace(ioe, _log);
|
||
|
}
|
||
|
throw new UnknownHostException(ioe);
|
||
|
}
|
||
|
if (response.Received && response.ResultCode == 0)
|
||
|
{
|
||
|
return response.AddrEntry;
|
||
|
}
|
||
|
}
|
||
|
while (--n > 0 && request.IsBroadcast);
|
||
|
throw new UnknownHostException();
|
||
|
}
|
||
|
|
||
|
/// <exception cref="UnknownHostException"></exception>
|
||
|
internal virtual NbtAddress GetByName(Name name, IPAddress addr)
|
||
|
{
|
||
7 years ago
|
int n;
|
||
7 years ago
|
|
||
8 years ago
|
NameQueryRequest request = new NameQueryRequest(name);
|
||
|
NameQueryResponse response = new NameQueryResponse();
|
||
|
if (addr != null)
|
||
|
{
|
||
|
request.Addr = addr;
|
||
|
request.IsBroadcast = (addr.GetAddressBytes()[3] == unchecked(unchecked(0xFF)));
|
||
|
n = RetryCount;
|
||
|
do
|
||
|
{
|
||
|
try
|
||
|
{
|
||
|
Send(request, response, RetryTimeout);
|
||
|
}
|
||
|
catch (IOException ioe)
|
||
|
{
|
||
|
if (_log.Level > 1)
|
||
|
{
|
||
|
Runtime.PrintStackTrace(ioe, _log);
|
||
|
}
|
||
|
throw new UnknownHostException(ioe);
|
||
|
}
|
||
7 years ago
|
if (response.Received && response.ResultCode == 0
|
||
8 years ago
|
&& response.IsResponse)
|
||
|
{
|
||
|
int last = response.AddrEntry.Length - 1;
|
||
|
response.AddrEntry[last].HostName.SrcHashCode = addr.GetHashCode();
|
||
|
return response.AddrEntry[last];
|
||
|
}
|
||
|
}
|
||
|
while (--n > 0 && request.IsBroadcast);
|
||
|
throw new UnknownHostException();
|
||
|
}
|
||
|
for (int i = 0; i < _resolveOrder.Length; i++)
|
||
|
{
|
||
|
try
|
||
|
{
|
||
|
switch (_resolveOrder[i])
|
||
|
{
|
||
|
case ResolverLmhosts:
|
||
|
{
|
||
|
NbtAddress ans = Lmhosts.GetByName(name);
|
||
|
if (ans != null)
|
||
|
{
|
||
|
ans.HostName.SrcHashCode = 0;
|
||
|
// just has to be different
|
||
|
// from other methods
|
||
|
return ans;
|
||
|
}
|
||
|
break;
|
||
|
}
|
||
|
|
||
|
case ResolverWins:
|
||
|
case ResolverBcast:
|
||
|
{
|
||
7 years ago
|
if (_resolveOrder[i] == ResolverWins && name.name != NbtAddress.MasterBrowserName
|
||
|
&& name.HexCode != unchecked(0x1d))
|
||
8 years ago
|
{
|
||
|
request.Addr = NbtAddress.GetWinsAddress();
|
||
|
request.IsBroadcast = false;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
request.Addr = Baddr;
|
||
|
request.IsBroadcast = true;
|
||
|
}
|
||
|
n = RetryCount;
|
||
|
while (n-- > 0)
|
||
|
{
|
||
|
try
|
||
|
{
|
||
|
Send(request, response, RetryTimeout);
|
||
|
}
|
||
|
catch (IOException ioe)
|
||
|
{
|
||
|
if (_log.Level > 1)
|
||
|
{
|
||
|
Runtime.PrintStackTrace(ioe, _log);
|
||
|
}
|
||
|
throw new UnknownHostException(ioe);
|
||
|
}
|
||
7 years ago
|
if (response.Received && response.ResultCode == 0
|
||
8 years ago
|
&& response.IsResponse)
|
||
|
{
|
||
7 years ago
|
|
||
|
response.AddrEntry[0].HostName.SrcHashCode = request.Addr.GetHashCode();
|
||
8 years ago
|
return response.AddrEntry[0];
|
||
|
}
|
||
|
if (_resolveOrder[i] == ResolverWins)
|
||
|
{
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
catch (IOException)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
throw new UnknownHostException();
|
||
|
}
|
||
|
|
||
|
/// <exception cref="UnknownHostException"></exception>
|
||
|
internal virtual NbtAddress[] GetNodeStatus(NbtAddress addr)
|
||
|
{
|
||
|
int n;
|
||
|
int srcHashCode;
|
||
|
NodeStatusRequest request;
|
||
|
NodeStatusResponse response;
|
||
|
response = new NodeStatusResponse(addr);
|
||
|
request = new NodeStatusRequest(new Name(NbtAddress.AnyHostsName, unchecked(0x00), null));
|
||
|
request.Addr = addr.GetInetAddress();
|
||
|
n = RetryCount;
|
||
|
while (n-- > 0)
|
||
|
{
|
||
|
try
|
||
|
{
|
||
|
Send(request, response, RetryTimeout);
|
||
|
}
|
||
|
catch (IOException ioe)
|
||
|
{
|
||
|
if (_log.Level > 1)
|
||
|
{
|
||
|
Runtime.PrintStackTrace(ioe, _log);
|
||
|
}
|
||
|
throw new UnknownHostException(ioe);
|
||
|
}
|
||
|
if (response.Received && response.ResultCode == 0)
|
||
|
{
|
||
|
srcHashCode = request.Addr.GetHashCode();
|
||
|
for (int i = 0; i < response.AddressArray.Length; i++)
|
||
|
{
|
||
|
response.AddressArray[i].HostName.SrcHashCode = srcHashCode;
|
||
|
}
|
||
|
return response.AddressArray;
|
||
|
}
|
||
|
}
|
||
|
throw new UnknownHostException();
|
||
|
}
|
||
|
|
||
|
internal virtual NbtAddress[] GetHosts()
|
||
|
{
|
||
|
try
|
||
|
{
|
||
|
_waitResponse = false;
|
||
|
|
||
|
byte[] bAddrBytes = laddr.GetAddressBytes();
|
||
|
|
||
|
for (int i = 1; i <= 254; i++)
|
||
|
{
|
||
|
NodeStatusRequest request;
|
||
|
NodeStatusResponse response;
|
||
|
|
||
|
byte[] addrBytes = {
|
||
|
bAddrBytes[0],
|
||
|
bAddrBytes[1],
|
||
|
bAddrBytes[2],
|
||
|
(byte)i
|
||
|
};
|
||
|
|
||
|
IPAddress addr = new IPAddress(addrBytes);
|
||
|
|
||
7 years ago
|
//response = new NodeStatusResponse(new NbtAddress(NbtAddress.UnknownName,
|
||
|
// (int)addr.Address, false, 0x20));
|
||
|
response = new NodeStatusResponse(new NbtAddress(NbtAddress.UnknownName,
|
||
|
BitConverter.ToInt32(addr.GetAddressBytes(), 0) , false, 0x20));
|
||
8 years ago
|
|
||
7 years ago
|
request = new NodeStatusRequest(new Name(NbtAddress.AnyHostsName, unchecked(0x20), null));
|
||
|
request.Addr = addr;
|
||
8 years ago
|
Send(request, response, 0);
|
||
|
}
|
||
7 years ago
|
|
||
8 years ago
|
}
|
||
|
catch (IOException ioe)
|
||
|
{
|
||
|
if (_log.Level > 1)
|
||
|
{
|
||
|
Runtime.PrintStackTrace(ioe, _log);
|
||
|
}
|
||
|
throw new UnknownHostException(ioe);
|
||
|
}
|
||
7 years ago
|
|
||
8 years ago
|
_autoResetWaitReceive = new AutoResetEvent(false);
|
||
7 years ago
|
_thread = new Thread(this);
|
||
8 years ago
|
_thread.SetDaemon(true);
|
||
7 years ago
|
_thread.Start();
|
||
8 years ago
|
|
||
7 years ago
|
_autoResetWaitReceive.WaitOne();
|
||
8 years ago
|
|
||
7 years ago
|
List<NbtAddress> result = new List<NbtAddress>();
|
||
8 years ago
|
|
||
|
foreach (var key in _responseTable.Keys)
|
||
|
{
|
||
7 years ago
|
NodeStatusResponse resp = (NodeStatusResponse)_responseTable[key];
|
||
7 years ago
|
|
||
7 years ago
|
if (resp.Received && resp.ResultCode == 0)
|
||
|
{
|
||
|
foreach (var entry in resp.AddressArray)
|
||
|
{
|
||
|
if (entry.HostName.HexCode == 0x20)
|
||
|
{
|
||
|
result.Add(entry);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
8 years ago
|
}
|
||
|
|
||
|
_responseTable.Clear();
|
||
|
|
||
|
_waitResponse = true;
|
||
|
|
||
|
return result.Count > 0 ? result.ToArray() : null;
|
||
|
}
|
||
|
}
|
||
|
}
|