cvs commit: jakarta-tomcat-connectors/jk/native2/include jk_endpoint.h

2001-12-12 Thread costin
costin 01/12/12 14:00:07 Modified:jk/native2/include jk_endpoint.h Log: Moved left_bytes_to_send to ws_service ( it's a characteristic of the request, not endpoint ) Added some more documentation on message. Moved the 'negotiation' flags ( since will be set per endpoint ),

cvs commit: jakarta-tomcat-connectors/jk/native2/include jk_endpoint.h

2002-01-25 Thread costin
costin 02/01/25 22:20:10 Modified:jk/native2/include jk_endpoint.h Log: Added few more fields needed to store data associated with the endpoint. We really need some 'notes' or generic attributes here. Removed the old interface methods. Service is now part of worker, where it

cvs commit: jakarta-tomcat-connectors/jk/native2/include jk_endpoint.h

2002-05-14 Thread costin
costin 02/05/14 10:04:09 Modified:jk/native2/include jk_endpoint.h Log: The 'stats' we collect are now part of the endpoint - this is the best way to avoid threading issues. Using the worker is dangerous - there are many threads accessing the worker at the same time. Atomic ope

cvs commit: jakarta-tomcat-connectors/jk/native2/include jk_endpoint.h

2002-06-20 Thread costin
costin 2002/06/20 11:45:02 Modified:jk/native2/common jk_channel_socket.c jk_handler_response.c jk_workerEnv.c jk_worker_ajp13.c jk/native2/include jk_endpoint.h Log: 2 bugs: - wrong POST body ( due to changes to support JNI, we reuse the re

cvs commit: jakarta-tomcat-connectors/jk/native2/include jk_endpoint.h jk_map.h

2001-12-31 Thread costin
costin 01/12/31 11:15:12 Modified:jk/native2/include jk_endpoint.h jk_map.h Log: Added getBool ( needed in few places ). Fixed the multi-value properties. The original code used some hardocded properties names ( path, env ) and a special hack to concatenate and split them.

cvs commit: jakarta-tomcat-connectors/jk/native2/include jk_endpoint.h jk_objCache.h jk_worker.h

2001-12-07 Thread costin
costin 01/12/07 15:10:34 Modified:jk/native2/include jk_endpoint.h jk_objCache.h jk_worker.h Log: Finish jk_objCache, start using it in jk_worker. ( the code is moved from ajp13_worker ). I added it to lb_worker, not yet to jni - but it may be usefull in few other places as

cvs commit: jakarta-tomcat-connectors/jk/native2/include jk_endpoint.h jk_service.h jk_worker.h

2001-12-13 Thread costin
costin 01/12/13 11:06:12 Modified:jk/native2/include jk_endpoint.h jk_service.h jk_worker.h Log: Add the new methods, remove unused declarations, added few more comments. Revision ChangesPath 1.6 +3 -29 jakarta-tomcat-connectors/jk/native2/include/jk_endpoint.

cvs commit: jakarta-tomcat-connectors/jk/native2/include jk_endpoint.h jk_global.h jk_service.h

2003-10-30 Thread mturk
mturk 2003/10/30 12:11:34 Modified:jk/native2/include jk_endpoint.h jk_global.h jk_service.h Log: Remove HAS_APR checking. Revision ChangesPath 1.19 +1 -3 jakarta-tomcat-connectors/jk/native2/include/jk_endpoint.h Index: jk_endpoint.h ==

cvs commit: jakarta-tomcat-connectors/jk/native2/include jk_endpoint.h jk_env.h jk_msg.h jk_worker.h

2002-05-03 Thread costin
costin 02/05/03 10:36:46 Modified:jk/native2/include jk_endpoint.h jk_env.h jk_msg.h jk_worker.h Log: Added 'reqCnt' and 'errCnt' and reorganize the worker struct. Few minor improvements (debug for env to filter out the low level messages), Revisio

cvs commit: jakarta-tomcat-connectors/jk/native2/include jk_endpoint.h jk_env.h jk_uriMap.h jk_webapp.h jk_worker.h jk_workerEnv.h

2001-12-13 Thread costin
costin 01/12/13 23:09:01 Modified:jk/native2/include jk_endpoint.h jk_env.h jk_uriMap.h jk_webapp.h jk_worker.h jk_workerEnv.h Log: Few changes to get it to compile. Using typedef'ed names is very strange in .h, I had to replace some with struct - the