|
Java example source code file (NativeUtil.h)
The NativeUtil.h Java example source code/* * Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this * particular file as subject to the "Classpath" exception as provided * by Oracle in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ #include <jni.h> #include <stdlib.h> #include <string.h> #include "gssapi.h" #ifndef _Included_NATIVE_Util #define _Included_NATIVE_Util #ifdef __cplusplus extern "C" { #endif extern jint getJavaTime(OM_uint32); extern OM_uint32 getGSSTime(jint); extern void checkStatus(JNIEnv *, jobject, OM_uint32, OM_uint32, char*); extern jint checkTime(OM_uint32); extern void initGSSBuffer(JNIEnv *, jbyteArray, gss_buffer_t); extern void resetGSSBuffer(JNIEnv *, jbyteArray, gss_buffer_t); extern gss_OID newGSSOID(JNIEnv *, jobject); extern void deleteGSSOID(gss_OID); extern gss_OID_set newGSSOIDSet(JNIEnv *, gss_OID); extern void deleteGSSOIDSet(gss_OID_set); extern jbyteArray getJavaBuffer(JNIEnv *, gss_buffer_t); extern jstring getJavaString(JNIEnv *, gss_buffer_t); extern jobject getJavaOID(JNIEnv *, gss_OID); extern jobjectArray getJavaOIDArray(JNIEnv *, gss_OID_set); extern jstring getMinorMessage(JNIEnv *, jobject, OM_uint32); extern void debug(JNIEnv *, char *); extern int sameMech(JNIEnv *, gss_OID, gss_OID); JNIEXPORT jint JNICALL JNI_OnLoad(JavaVM *, void *); JNIEXPORT void JNICALL JNI_OnUnload(JavaVM *, void *); extern char debugBuf[]; extern jclass CLS_Object; extern jclass CLS_GSSNameElement; extern jclass CLS_GSSCredElement; extern jclass CLS_NativeGSSContext; extern jmethodID MID_MessageProp_getPrivacy; extern jmethodID MID_MessageProp_getQOP; extern jmethodID MID_MessageProp_setPrivacy; extern jmethodID MID_MessageProp_setQOP; extern jmethodID MID_MessageProp_setSupplementaryStates; extern jmethodID MID_ChannelBinding_getInitiatorAddr; extern jmethodID MID_ChannelBinding_getAcceptorAddr; extern jmethodID MID_ChannelBinding_getAppData; extern jmethodID MID_InetAddress_getAddr; extern jmethodID MID_GSSNameElement_ctor; extern jmethodID MID_GSSCredElement_ctor; extern jmethodID MID_NativeGSSContext_ctor; extern jfieldID FID_GSSLibStub_pMech; extern jfieldID FID_NativeGSSContext_pContext; extern jfieldID FID_NativeGSSContext_srcName; extern jfieldID FID_NativeGSSContext_targetName; extern jfieldID FID_NativeGSSContext_isInitiator; extern jfieldID FID_NativeGSSContext_isEstablished; extern jfieldID FID_NativeGSSContext_delegatedCred; extern jfieldID FID_NativeGSSContext_flags; extern jfieldID FID_NativeGSSContext_lifetime; extern jfieldID FID_NativeGSSContext_actualMech; #ifdef __cplusplus } #endif #endif Other Java examples (source code examples)Here is a short list of links related to this Java NativeUtil.h source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.