seda.sandStorm.lib.http
Interface httpConst

All Known Implementing Classes:
httpBadRequestResponse, httpConnection, httpInternalServerErrorResponse, httpNotFoundResponse, httpOKResponse, httpPacketReader, httpRedirectResponse, httpRequest, httpResponder, httpResponse, httpServer, httpServiceUnavailableResponse

public interface httpConst

This interface defines various constants used by the HTTP protocol implementation.


Field Summary
static java.lang.String CRLF
          Standard HTTP end-of-line marker, equal to "\r\n".
static int DEFAULT_HTTP_PORT
          The default port on which httpServer listens.
static java.lang.String HTTP_VERSION
          The HTTP version sent in the response header.
static int WRITE_CLOG_THRESHOLD
          The threshold for outgoing TCP connections; currently set to -1, meaning infinite threshold.
 

Field Detail

DEFAULT_HTTP_PORT

static final int DEFAULT_HTTP_PORT
The default port on which httpServer listens.

See Also:
Constant Field Values

WRITE_CLOG_THRESHOLD

static final int WRITE_CLOG_THRESHOLD
The threshold for outgoing TCP connections; currently set to -1, meaning infinite threshold.

See Also:
Constant Field Values

CRLF

static final java.lang.String CRLF
Standard HTTP end-of-line marker, equal to "\r\n".

See Also:
Constant Field Values

HTTP_VERSION

static final java.lang.String HTTP_VERSION
The HTTP version sent in the response header.

See Also:
Constant Field Values