1 /* 2 * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved. 3 */ 4 package com.tc.net.protocol.transport; 5 6 7 public interface TransportHandshakeMessage extends WireProtocolMessage { 8 public ConnectionID getConnectionId(); 9 10 public boolean isMaxConnectionsExceeded(); 11 12 public int getMaxConnections(); 13 14 // XXX: Yuck. 15 public boolean isSyn(); 16 public boolean isSynAck(); 17 public boolean isAck(); 18 } 19