From f011768ed41a532d8902f2e66f6172f9f1cc135b Mon Sep 17 00:00:00 2001 From: Michal Cmarada Date: Tue, 26 Feb 2019 13:34:15 +0100 Subject: add ikev2 plugin - this enables to build ikev2 plugin Change-Id: Ifffea577b29db053ac8ecef2359ecc62d85611b2 Signed-off-by: Michal Cmarada --- java/jvpp-ikev2/jvpp_ikev2.h | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100755 java/jvpp-ikev2/jvpp_ikev2.h (limited to 'java/jvpp-ikev2/jvpp_ikev2.h') 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 +#include +#include +#include +#include +#include + +/* 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__ */ -- cgit 1.2.3-korg