mturk 2002/08/15 02:24:03 Modified: jk/native2/common jk_uriEnv.c Log: Add the reverse mapping option to the uri meaning that the mapping will be 'reversed' or NOT mapped if the actuall mapping is acomplished. Revision Changes Path 1.25 +2 -0 jakarta-tomcat-connectors/jk/native2/common/jk_uriEnv.c Index: jk_uriEnv.c =================================================================== RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native2/common/jk_uriEnv.c,v retrieving revision 1.24 retrieving revision 1.25 diff -u -r1.24 -r1.25 --- jk_uriEnv.c 8 Jul 2002 13:36:29 -0000 1.24 +++ jk_uriEnv.c 15 Aug 2002 09:24:03 -0000 1.25 @@ -157,6 +157,8 @@ uriEnv->servlet=val; } else if( strcmp("timing", name) == 0 ) { uriEnv->timing=atoi( val ); + } else if( strcmp("reverse", name) == 0 ) { + uriEnv->reverse=atoi( val ); } else if( strcmp("alias", name) == 0 ) { if( uriEnv->match_type == MATCH_TYPE_HOST ) { if( uriEnv->aliases==NULL ) {
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>