001package jmri.jmrix.loconet.loconetovertcp;
002
003/**
004 * Implementation of the LocoNetOverTcp LbServer Server Protocol.
005 *
006 * @author Alex Shepherd Copyright (C) 2006
007 */
008public interface LnTcpServerListener {
009
010    void notifyServerStateChanged(LnTcpServer s);
011
012    void notifyClientStateChanged(LnTcpServer s);
013
014}