/**
- * State flag.
- */
- protected boolean started = false;
-
-
- /**
* Socket associated with the current connection.
*/
protected SocketWrapper<Socket> socket;
boolean keptAlive = socketWrapper.isKeptAlive();
- while (started && !error && keepAlive && !endpoint.isPaused()) {
+ while (!error && keepAlive && !endpoint.isPaused()) {
// Parsing the request header
try {
error = true;
}
- } else if (actionCode == ActionCode.START) {
-
- started = true;
-
- } else if (actionCode == ActionCode.STOP) {
-
- started = false;
-
} else if (actionCode == ActionCode.REQ_SSL_ATTRIBUTE ) {
try {
import javax.management.ObjectName;
-import org.apache.coyote.ActionCode;
import org.apache.coyote.RequestGroupInfo;
import org.apache.coyote.RequestInfo;
import org.apache.juli.logging.Log;
if (processor == null) {
processor = createProcessor();
}
- processor.action(ActionCode.START, null);
if (proto.isSSLEnabled() && (proto.sslImplementation != null)) {
processor.setSSLSupport
// processor.recycle();
if (recycle) {
- processor.action(ActionCode.STOP, null);
recycledProcessors.offer(processor);
}
}