| org.apache.ajp.tomcat33.Ajp14Interceptor
Ajp14Interceptor | public class Ajp14Interceptor extends PoolTcpConnector implements TcpConnectionHandler(Code) | | Tomcat 33 module implementing the Ajp14 protocol.
The actual protocol implementation is in Ajp14.java, this is just an
adapter to plug it into tomcat.
|
Method Summary | |
protected boolean | doShutdown(InetAddress serverAddr, InetAddress clientAddr) | public void | engineInit(ContextManager cm) | public void | engineStart(ContextManager cm) | public Object | getInfo(Context ctx, Request request, int id, String key) | public Object[] | init() Called by the thread pool when a new thread is added to the pool,
in order to create the (expensive) objects that will be stored
as thread data. | protected void | localInit() Called by PoolTcpConnector to allow childs to init. | public void | processConnection(TcpConnection connection, Object thData) Called whenever a new TCP connection is received. | public int | setInfo(Context ctx, Request request, int id, String key, Object obj) | public void | setPassword(String s) | public void | setSeed(String pseed) | public void | setServer(Object contextM) |
ajp14_note | int ajp14_note(Code) | | |
Ajp14Interceptor | public Ajp14Interceptor()(Code) | | |
engineInit | public void engineInit(ContextManager cm) throws TomcatException(Code) | | |
engineStart | public void engineStart(ContextManager cm) throws TomcatException(Code) | | |
init | public Object[] init()(Code) | | Called by the thread pool when a new thread is added to the pool,
in order to create the (expensive) objects that will be stored
as thread data.
XXX we should use a single object, not array ( several reasons ),
XXX Ajp14 should be storead as a request note, to be available in
all modules
|
localInit | protected void localInit() throws Exception(Code) | | Called by PoolTcpConnector to allow childs to init.
|
processConnection | public void processConnection(TcpConnection connection, Object thData)(Code) | | Called whenever a new TCP connection is received. The connection
is reused.
|
setInfo | public int setInfo(Context ctx, Request request, int id, String key, Object obj)(Code) | | |
setSeed | public void setSeed(String pseed)(Code) | | Set the original entropy seed
|
|
|