VPP-378: rename jvpp package to the same as groupId of deployed jars

Related changes:
- NSH: https://gerrit.fd.io/r/#/c/3181/
- Honeycomb: https://gerrit.fd.io/r/#/c/3182

Change-Id: Ifdd6b8b575916fdf99794618dbe604c2e17e8e82
Signed-off-by: Marek Gradzki <mgradzki@cisco.com>
This commit is contained in:
Marek Gradzki
2016-09-28 10:12:04 +02:00
committed by Damjan Marion
parent 85ecc810ca
commit e85581cd07
44 changed files with 219 additions and 219 deletions

View File

@ -55,10 +55,10 @@ typedef struct {
core_main_t core_main __attribute__((aligned (64)));
#include "org_openvpp_jvpp_core_JVppCoreImpl.h"
#include "io_fd_vpp_jvpp_core_JVppCoreImpl.h"
#include "jvpp_core_gen.h"
JNIEXPORT void JNICALL Java_org_openvpp_jvpp_core_JVppCoreImpl_init0
JNIEXPORT void JNICALL Java_io_fd_vpp_jvpp_core_JVppCoreImpl_init0
(JNIEnv * env, jclass clazz, jobject callback, jlong queue_address, jint my_client_index) {
core_main_t * plugin_main = &core_main;
plugin_main->my_client_index = my_client_index;
@ -78,7 +78,7 @@ JNIEXPORT void JNICALL Java_org_openvpp_jvpp_core_JVppCoreImpl_init0
#undef _
}
JNIEXPORT void JNICALL Java_org_openvpp_jvpp_core_JVppCoreImpl_close0
JNIEXPORT void JNICALL Java_io_fd_vpp_jvpp_core_JVppCoreImpl_close0
(JNIEnv *env, jclass clazz) {
core_main_t * plugin_main = &core_main;