summaryrefslogtreecommitdiffstats
path: root/java/jvpp-ikev2/jvpp_ikev2.h
diff options
context:
space:
mode:
authorMichal Cmarada <mcmarada@cisco.com>2019-02-26 13:34:15 +0100
committerMichal Cmarada <mcmarada@cisco.com>2019-02-27 13:29:35 +0100
commitf011768ed41a532d8902f2e66f6172f9f1cc135b (patch)
tree944e9dc6c27d177e7237830f19ea7027555d0dab /java/jvpp-ikev2/jvpp_ikev2.h
parent0d2e3e90f1758b03266e9f5934d11995d7b9a728 (diff)
add ikev2 plugin
- this enables to build ikev2 plugin Change-Id: Ifffea577b29db053ac8ecef2359ecc62d85611b2 Signed-off-by: Michal Cmarada <mcmarada@cisco.com>
Diffstat (limited to 'java/jvpp-ikev2/jvpp_ikev2.h')
-rwxr-xr-xjava/jvpp-ikev2/jvpp_ikev2.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/java/jvpp-ikev2/jvpp_ikev2.h b/java/jvpp-ikev2/jvpp_ikev2.h
new file mode 100755
index 0000000..829a3df
--- /dev/null
+++ b/java/jvpp-ikev2/jvpp_ikev2.h
@@ -0,0 +1,42 @@
+/*
+ * Copyright (c) 2019 Cisco and/or its affiliates.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at:
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+#ifndef __included_jvpp_ikev2_h__
+#define __included_jvpp_ikev2_h__
+
+#include <vnet/vnet.h>
+#include <vnet/ip/ip.h>
+#include <vnet/api_errno.h>
+#include <vlibapi/api.h>
+#include <vlibmemory/api.h>
+#include <jni.h>
+
+/* Global state for JVPP-IKEV2 */
+typedef struct {
+ /* Pointer to shared memory queue */
+ svm_queue_t * vl_input_queue;
+
+ /* VPP api client index */
+ u32 my_client_index;
+
+ /* Callback object and class references enabling asynchronous Java calls */
+ jobject callbackObject;
+ jclass callbackClass;
+
+} ikev2_main_t;
+
+ikev2_main_t ikev2_main __attribute__((aligned (64)));
+
+
+#endif /* __included_jvpp_ikev2_h__ */