1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-07 04:02:58 +03:00

Remove lua_ap_banner, as it's no longer being used.

Add ivm_get/ivm_set for Inter-VM data transfer. This allows multiple VMs across a process to share data without having to resort to external databases or filesystems. This is a work in progress, and I have yet to work out a proper way of resetting a variable without causing a memory leak (this could be done by allocating a new pool for each object, but I'm trying to see if there's a more efficient way). Comments, ideas etc are most welcome.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1469744 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Daniel Gruno
2013-04-19 08:46:28 +00:00
parent d3b7df4d84
commit 8049067196
3 changed files with 70 additions and 10 deletions

View File

@@ -37,5 +37,11 @@ typedef struct
int type;
} req_fun_t;
typedef struct {
int type;
size_t size;
void* string;
lua_Number number;
} lua_ivm_object;
#endif /* !_LUA_REQUEST_H_ */