001 /**
002 * Copyright (C) 2009-2013 Barchart, Inc. <http://www.barchart.com/>
003 *
004 * All rights reserved. Licensed under the OSI BSD License.
005 *
006 * http://www.opensource.org/licenses/bsd-license.php
007 */
008 package com.barchart.udt.net;
009
010 import com.barchart.udt.SocketUDT;
011
012 /**
013 * custom/common acceptor/connector socket features
014 */
015 public interface IceCommon {
016
017 /**
018 * expose underlying socket
019 */
020 SocketUDT socketUDT();
021
022 }