Package org.jscsi.target.connection.stage.fullfeature

Examples of org.jscsi.target.connection.stage.fullfeature.LogoutStage


                    break;
                case TEXT_REQUEST :
                    stage = new TextNegotiationStage(this);
                    break;
                case LOGOUT_REQUEST :
                    stage = new LogoutStage(this);
                    running = false;
                    break;
                default :
                    LOGGER.error("Recieved unsupported opcode for " + pdu.getBasicHeaderSegment().getOpCode());
                    stage = new UnsupportedOpCodeStage(this);
View Full Code Here

TOP

Related Classes of org.jscsi.target.connection.stage.fullfeature.LogoutStage

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.