THTTPServerClientState Enumeration

Represents type THTTPServerClientState.

Namespace: flcHTTPServer
type
 THTTPServerClientState = (
 hscsInit,
 hscsAwaitingRequest,
 hscsReceivedRequestHeader,
 hscsReceivingContent,
 hscsRequestComplete,
 hscsPreparingResponse,
 hscsAwaitingPreparedResponse,
 hscsSendingResponseHeader,
 hscsSendingContent,
 hscsResponseComplete,
 hscsResponseCompleteAndClosing,
 hscsResponseCompleteAndClosed,
 hscsRequestInterruptedAndClosed);

The THTTPServerClientState type exposes the following members.

Show:
 NameDescription
hscsAwaitingPreparedResponse

Represents constant hscsAwaitingPreparedResponse.

hscsAwaitingRequest

Represents constant hscsAwaitingRequest.

hscsInit

Represents constant hscsInit.

hscsPreparingResponse

Represents constant hscsPreparingResponse.

hscsReceivedRequestHeader

Represents constant hscsReceivedRequestHeader.

hscsReceivingContent

Represents constant hscsReceivingContent.

hscsRequestComplete

Represents constant hscsRequestComplete.

hscsRequestInterruptedAndClosed

Represents constant hscsRequestInterruptedAndClosed.

hscsResponseComplete

Represents constant hscsResponseComplete.

hscsResponseCompleteAndClosed

Represents constant hscsResponseCompleteAndClosed.

hscsResponseCompleteAndClosing

Represents constant hscsResponseCompleteAndClosing.

hscsSendingContent

Represents constant hscsSendingContent.

hscsSendingResponseHeader

Represents constant hscsSendingResponseHeader.

Top