Changeset 3372 in vbox for trunk/src/libs/xpcom18a4/ipc/ipcd
- Timestamp:
- Jul 3, 2007 1:05:50 AM (18 years ago)
- Location:
- trunk/src/libs/xpcom18a4/ipc/ipcd/shared/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/ipc/ipcd/shared/src/ipcConfig.cpp
r1 r3372 36 36 * ***** END LICENSE BLOCK ***** */ 37 37 38 #ifdef XP_WIN 38 #if defined(XP_WIN) 39 #elif defined(XP_OS2) && defined(XP_OS2_NATIVEIPC) 39 40 #else 40 41 #include <string.h> … … 44 45 #include "plstr.h" 45 46 46 #ifdef XP_OS2 47 #if defined(XP_OS2) && !defined(XP_OS2_NATIVEIPC) 48 #ifdef VBOX 49 static const char kDefaultSocketPrefix[] = "\\socket\\vbox-"; 50 #else 47 51 static const char kDefaultSocketPrefix[] = "\\socket\\mozilla-"; 52 #endif 48 53 static const char kDefaultSocketSuffix[] = "-ipc\\ipcd"; 49 54 #else -
trunk/src/libs/xpcom18a4/ipc/ipcd/shared/src/ipcConfig.h
r1 r3372 50 50 #define IPC_CLIENT_WINDOW_NAME_PREFIX "Mozilla:IPCAppWindow:" 51 51 #define IPC_SYNC_EVENT_NAME "Local\\MozillaIPCSyncEvent" 52 #ifndef IPC_DAEMON_APP_NAME 52 53 #define IPC_DAEMON_APP_NAME "mozilla-ipcd.exe" 54 #endif 53 55 #define IPC_PATH_SEP_CHAR '\\' 54 56 #define IPC_MODULES_DIR "ipc\\modules" … … 71 73 #define IPC_PORT 0 72 74 #define IPC_SOCKET_TYPE "ipc" 73 #define IPC_DAEMON_APP_NAME "VBoxXPCOMIPCD" 74 #ifdef XP_OS2 75 #if defined(XP_OS2) 76 #ifndef IPC_DAEMON_APP_NAME 77 #define IPC_DAEMON_APP_NAME "mozilla-ipcd.exe" 78 #endif 75 79 #define IPC_PATH_SEP_CHAR '\\' 76 80 #define IPC_MODULES_DIR "ipc\\modules" 77 81 #else 82 #ifndef IPC_DAEMON_APP_NAME 83 #define IPC_DAEMON_APP_NAME "mozilla-ipcd" 84 #endif 78 85 #define IPC_PATH_SEP_CHAR '/' 79 86 #define IPC_MODULES_DIR "ipc/modules"
Note:
See TracChangeset
for help on using the changeset viewer.