< prev index next >

src/share/native/sun/security/krb5/nativeccache.c

Print this page
rev 14433 : 8074836: Resolve disabled warnings for libosxkrb5
8074835: Resolve disabled warnings for libj2gss
Reviewed-by: erikj


   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 #import "sun_security_krb5_Credentials.h"
  27 #import <Kerberos/Kerberos.h>


  28 
  29 /*
  30  * Based largely on klist.c,
  31  *
  32  * Created by Scott Kovatch on 8/12/04.
  33  *
  34  * See http://www.opensource.apple.com/darwinsource/10.3.3/Kerberos-47/KerberosClients/klist/Sources/klist.c
  35 
  36  */
  37 
  38 /*
  39  * Statics for this module
  40  */
  41 
  42 static jclass derValueClass = NULL;
  43 static jclass ticketClass = NULL;
  44 static jclass principalNameClass = NULL;
  45 static jclass encryptionKeyClass = NULL;
  46 static jclass ticketFlagsClass = NULL;
  47 static jclass kerberosTimeClass = NULL;




   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 #import "sun_security_krb5_Credentials.h"
  27 #import <Kerberos/Kerberos.h>
  28 #import <string.h>
  29 #import <time.h>
  30 
  31 /*
  32  * Based largely on klist.c,
  33  *
  34  * Created by Scott Kovatch on 8/12/04.
  35  *
  36  * See http://www.opensource.apple.com/darwinsource/10.3.3/Kerberos-47/KerberosClients/klist/Sources/klist.c
  37 
  38  */
  39 
  40 /*
  41  * Statics for this module
  42  */
  43 
  44 static jclass derValueClass = NULL;
  45 static jclass ticketClass = NULL;
  46 static jclass principalNameClass = NULL;
  47 static jclass encryptionKeyClass = NULL;
  48 static jclass ticketFlagsClass = NULL;
  49 static jclass kerberosTimeClass = NULL;


< prev index next >