aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main/extractor_ipc.h4
-rw-r--r--src/main/extractor_ipc_gnu.c6
-rw-r--r--src/main/extractor_ipc_w32.c6
3 files changed, 10 insertions, 6 deletions
diff --git a/src/main/extractor_ipc.h b/src/main/extractor_ipc.h
index ce54f4d..2b1ea47 100644
--- a/src/main/extractor_ipc.h
+++ b/src/main/extractor_ipc.h
@@ -35,6 +35,10 @@
35 */ 35 */
36#define MAX_META_DATA 32 * 1024 * 1024 36#define MAX_META_DATA 32 * 1024 * 1024
37 37
38/**
39 * Maximum length of a shared memory object name
40 */
41#define MAX_SHM_NAME 255
38 42
39/** 43/**
40 * Sent from LE to a plugin to initialize it (open shm, 44 * Sent from LE to a plugin to initialize it (open shm,
diff --git a/src/main/extractor_ipc_gnu.c b/src/main/extractor_ipc_gnu.c
index 6c80188..0c255fd 100644
--- a/src/main/extractor_ipc_gnu.c
+++ b/src/main/extractor_ipc_gnu.c
@@ -36,12 +36,6 @@
36 36
37 37
38/** 38/**
39 * Maximum length of a shared memory object name
40 */
41#define MAX_SHM_NAME 255
42
43
44/**
45 * A shared memory resource (often shared with several 39 * A shared memory resource (often shared with several
46 * other processes). 40 * other processes).
47 */ 41 */
diff --git a/src/main/extractor_ipc_w32.c b/src/main/extractor_ipc_w32.c
index 2ca0735..cb37e3e 100644
--- a/src/main/extractor_ipc_w32.c
+++ b/src/main/extractor_ipc_w32.c
@@ -18,6 +18,12 @@
18 Boston, MA 02111-1307, USA. 18 Boston, MA 02111-1307, USA.
19 */ 19 */
20 20
21#include "platform.h"
22#include "plibc.h"
23#include "extractor.h"
24#include "extractor_datasource.h"
25#include "extractor_plugin_main.h"
26#include "extractor_ipc.h"
21 27
22/** 28/**
23 */ 29 */