001package jmri.jmrix.bidib;
002
003/**
004 * BiDiBConstants.java
005 *
006 * Description: Constants to represent values seen in BiDiB traffic
007 *
008 * @author Paul Bender Copyright (C) 2003-2009
009 * @author Eckart Meyer Copyright (C) 2019-2023
010 *
011 * A few variables don't have a prefix. The name should be self explanitory, but
012 * a prefix may be added later.
013 * 
014 */
015public final class BiDiBConstants {
016
017    // BiDiB over TCP
018    public final static String BIDIB_OVER_TCP_DEFAULT_HOST = "localhost";
019
020}