Introducing Java Servlet Container beta.

This commit is contained in:
Max Romanov
2019-02-28 18:02:42 +03:00
parent ec7319d32c
commit 5bfdebb9e4
95 changed files with 13360 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
/*
* Copyright (C) NGINX, Inc.
*/
#ifndef _NXT_JAVA_REQUEST_H_INCLUDED_
#define _NXT_JAVA_REQUEST_H_INCLUDED_
#include <jni.h>
#include <nxt_unit_typedefs.h>
int nxt_java_initRequest(JNIEnv *env, jobject cl);
jobject nxt_java_newRequest(JNIEnv *env, jobject ctx, nxt_unit_request_info_t *req);
#endif /* _NXT_JAVA_REQUEST_H_INCLUDED_ */