Changeset 49
- Timestamp:
- 12/28/04 00:15:15 (4 years ago)
- Files:
-
- eaccelerator/trunk/ChangeLog (modified) (1 diff)
- eaccelerator/trunk/eaccelerator.h (modified) (1 diff)
- eaccelerator/trunk/encoder.c (modified) (1 diff)
- eaccelerator/trunk/loader.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
eaccelerator/trunk/ChangeLog
r48 r49 1 2004-12-27 Everaldo Canuto <everaldo_canuto at yahoo.com.br> 2 3 * Move encoder version information to eaccelerator.h, today 4 this information are in two places, encoder.h and loader.h 5 now it is unified. 6 1 7 2004-12-27 Reiner Jung <r.jung at think-e.com.br> 2 8 eaccelerator/trunk/eaccelerator.h
r35 r49 192 192 193 193 #define EACCELERATOR_EXTENSION_NAME "eAccelerator" 194 #define EACCELERATOR_LOADER_EXTENSION_NAME "Turck Loader" 194 #define EACCELERATOR_LOADER_EXTENSION_NAME "eLoader" 195 196 #define MMC_ENCODER_VERSION 0x00000003 197 #define MMC_ENCODER_END 0x00 198 #define MMC_ENCODER_NAMESPACE 0x01 199 #define MMC_ENCODER_CLASS 0x02 200 #define MMC_ENCODER_FUNCTION 0x03 195 201 196 202 #endif /*#ifndef INCLUDED_EACCELERATOR_H*/ eaccelerator/trunk/encoder.c
r44 r49 35 35 36 36 #include "opcodes.h" 37 38 37 #include "zend.h" 39 38 #include "zend_API.h" 40 39 #include "php.h" 41 42 40 #include <math.h> 43 44 #define MMC_ENCODER_VERSION 0x0000000345 46 #define MMC_ENCODER_END 0x0047 #define MMC_ENCODER_NAMESPACE 0x0148 #define MMC_ENCODER_CLASS 0x0249 #define MMC_ENCODER_FUNCTION 0x0350 41 51 42 #ifndef WITHOUT_FILE_FILTER eaccelerator/trunk/loader.c
r44 r49 35 35 36 36 #include "opcodes.h" 37 38 37 #include "zend.h" 39 38 #include "zend_API.h" 40 39 #include "php.h" 41 42 40 #include <math.h> 43 44 #define MMC_ENCODER_VERSION 0x0000000245 #define MMC_ENCODER_END 0x0046 #define MMC_ENCODER_NAMESPACE 0x0147 #define MMC_ENCODER_CLASS 0x0248 #define MMC_ENCODER_FUNCTION 0x0349 41 50 42 typedef struct loader_data { … … 1051 1043 } else { 1052 1044 error_reported = 1; 1053 zend_error(E_ERROR, " MMCacheLoader can't load code. Icorrect Zend Engine version");1045 zend_error(E_ERROR, "eAccelerator Loader can't load code. Icorrect Zend Engine version"); 1054 1046 } 1055 1047 } else { 1056 1048 error_reported = 1; 1057 zend_error(E_ERROR, " MMCache Loader can't load code. Icorrect MMCacheencoder version (%u)", v);1049 zend_error(E_ERROR, "eAccelerator Loader can't load code. Icorrect eAccelerator encoder version (%u)", v); 1058 1050 } 1059 1051 } else { 1060 1052 error_reported = 1; 1061 zend_error(E_ERROR, " MMCacheLoader can't load code. Icorrect code");1053 zend_error(E_ERROR, "eAccelerator Loader can't load code. Icorrect code"); 1062 1054 } 1063 1055 } zend_catch {