costin 2003/02/28 21:49:58
Modified:jk/native2/common jk_channel_socket.c jk_endpoint.c jk_env.c
jk_map.c jk_uriEnv.c jk_worker_ajp13.c
jk_worker_lb.c jk_worker_status.c
jk/native2/include jk_env.h jk_map.h
Log:
Added mo
costin 02/05/23 21:26:00
Modified:jk/native2/common jk_env.c jk_shm.c
jk/native2/include jk_env.h
Log:
Moved the common code in jk_env. Many components need an aprPool, and assuming
that jk_pool wraps an aprPool is not the cleanest solution.
Revision Changes
costin 02/04/25 11:37:44
Modified:jk/native2/include jk_env.h
Log:
Added a 'recycle' method.
Obviously malloc is cheap in C ( but it does have some syncs ! ), but
we need to preserve the jni 'global references' and maybe in future pin
the jbyteArrays.
Revision Change
nacho 02/04/12 14:49:03
Modified:jk/native2/common jk_channel_jni.c jk_channel_socket.c
jk_config.c jk_endpoint.c jk_env.c
jk_handler_logon.c jk_handler_response.c
jk_logger_file.c jk_uriEnv.c jk_uriMap.c
costin 02/03/24 19:32:35
Modified:jk/native2/include jk_env.h
Log:
Added a better creation method ( moved from jk_config ), easier to use.
It uses the full name and return the jk_bean ( to be used for futher config )
Revision ChangesPath
1.10 +12 -1 jakarta-t
costin 02/03/24 11:21:40
Modified:jk/native2/include jk_env.h
Log:
Initial/experimental field to store all the supported properties in
each component.
Will be used to simplify/generalize the status worker.
Revision ChangesPath
1.9 +8 -0 jakarta-tomcat-
costin 02/03/18 09:53:27
Modified:jk/native2/include jk_env.h
Log:
Major change in jk component registration and config.
jk_bean_t is a common structure used by all jk components for registration
and configuration. The model is similar with beans ( or mbeans ) - the
proper
hgomez 02/02/21 03:15:05
Modified:jk/native2/include jk_env.h jk_global.h jk_map.h jk_md5.h
Log:
Seventh Batch of jk2 renaming
Revision ChangesPath
1.6 +4 -4 jakarta-tomcat-connectors/jk/native2/include/jk_env.h
Index: jk_env.h
costin 02/02/06 11:18:21
Modified:jk/native2/include jk_env.h
Log:
Initial work on the exception mechanism, that would allow more meaningfull
error messages out of jk. We can live without it, so it's low priority.
Revision ChangesPath
1.5 +46 -4 jakarta-tomc