*
* @param poolsize the size of the <tt>ThreadPool</tt> used to handle
* incoming requests.
*/
public ModbusTCPListener(int poolsize) {
m_ThreadPool = new ThreadPool(poolsize);
try {
m_Address = InetAddress.getLocalHost();
} catch (UnknownHostException ex) {
}