Return-Path: Delivered-To: apmail-jakarta-tomcat-dev-archive@www.apache.org Received: (qmail 83061 invoked from network); 11 Jun 2005 18:18:26 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 11 Jun 2005 18:18:26 -0000 Received: (qmail 4971 invoked by uid 500); 11 Jun 2005 18:18:15 -0000 Delivered-To: apmail-jakarta-tomcat-dev-archive@jakarta.apache.org Received: (qmail 4915 invoked by uid 500); 11 Jun 2005 18:18:15 -0000 Mailing-List: contact tomcat-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "Tomcat Developers List" Reply-To: "Tomcat Developers List" Delivered-To: mailing list tomcat-dev@jakarta.apache.org Received: (qmail 4889 invoked by uid 500); 11 Jun 2005 18:18:15 -0000 Received: (qmail 4880 invoked by uid 99); 11 Jun 2005 18:18:14 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Sat, 11 Jun 2005 11:18:14 -0700 Received: (qmail 83043 invoked by uid 1526); 11 Jun 2005 18:18:13 -0000 Date: 11 Jun 2005 18:18:13 -0000 Message-ID: <20050611181813.83042.qmail@minotaur.apache.org> From: mturk@apache.org To: jakarta-tomcat-connectors-cvs@apache.org Subject: cvs commit: jakarta-tomcat-connectors/jni/java/org/apache/tomcat/jni SSLContext.java X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N mturk 2005/06/11 11:18:13 Modified: jni/java/org/apache/tomcat/jni SSLContext.java Log: Rename setVhostId to setContextId. This is not neccesary a vhost name, but can be any string idendifying context, to suppress cross context sessions. Revision Changes Path 1.19 +3 -3 jakarta-tomcat-connectors/jni/java/org/apache/tomcat/jni/SSLContext.java Index: SSLContext.java =================================================================== RCS file: /home/cvs/jakarta-tomcat-connectors/jni/java/org/apache/tomcat/jni/SSLContext.java,v retrieving revision 1.18 retrieving revision 1.19 diff -u -r1.18 -r1.19 --- SSLContext.java 10 Jun 2005 07:53:24 -0000 1.18 +++ SSLContext.java 11 Jun 2005 18:18:13 -0000 1.19 @@ -54,11 +54,11 @@ public static native int free(long ctx); /** - * Set Virtual host id. Usually host:port combination. + * Set Session context id. Usually host:port combination. * @param ctx Context to use. * @param id String that uniquely identifies this context. */ - public static native void setVhostId(long ctx, String id); + public static native void setContextId(long ctx, String id); /** * Asssociate BIOCallback for input or output data capture. --------------------------------------------------------------------- To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org