Skip to content

Commit 41b741e

Browse files
committed
Expose the new CMS parm functions; update deps
Signed-off-by: Irek Fakhrutdinov <ifakhrutdinov@rocketsoftware.com>
1 parent f44ce8a commit 41b741e

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ All notable changes to the ZSS package will be documented in this file.
44

55
## `2.17.0`
66
- Code to configure the SLH block size of the http server through 'httpRequestHeapMaxBlocks' in the yaml.(#701)
7+
- Bugfix: Support cross-memory server parameters longer than 128 characters (#684)
8+
- Enhancement: Expose new cross-memory server's functions in dynlink (#684)
79

810
## `2.16.0`
911
- Bugfix: AUX should take leap seconds into account in their log messages' timestamp (#690, #691)

c/zis/stubinit.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,8 @@
229229
stubVector[ZIS_STUB_CMGETLOG] = (void*)cmsGetPCLogLevel;
230230
stubVector[ZIS_STUB_CMGETSTS] = (void*)cmsGetStatus;
231231
stubVector[ZIS_STUB_CMMKSNAM] = (void*)cmsMakeServerName;
232+
stubVector[ZIS_STUB_CMGETPRX] = (void*)cmsGetConfigParmExt;
233+
stubVector[ZIS_STUB_CMGETPUX] = (void*)cmsGetConfigParmExtUnchecked;
232234
stubVector[ZIS_STUB_DYNASTXU] = (void*)createSimpleTextUnit;
233235
stubVector[ZIS_STUB_DYNASTX2] = (void*)createSimpleTextUnit2;
234236
stubVector[ZIS_STUB_DYNACTXU] = (void*)createCharTextUnit;

h/zis/zisstubs.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
FULL BACKWARD COMPATIBILITY MUST BE MAINTAINED
2121
*/
2222

23-
#define ZIS_STUBS_VERSION 3
23+
#define ZIS_STUBS_VERSION 4
2424

2525
/*
2626
How does a user check for compatibility?
@@ -310,6 +310,8 @@
310310
/* #define ZIS_STUB_CMECSAFR 382 cmsFreeECSAStorage - not in CMS_CLIENT */
311311
/* #define ZIS_STUB_CMECSAA2 383 cmsAllocateECSAStorage2 - not in CMS_CLIENT */
312312
/* #define ZIS_STUB_CMECSAF2 384 cmsFreeECSAStorage2 - not in CMS_CLIENT */
313+
#define ZIS_STUB_CMGETPRX 385 /* cmsGetConfigParmExt */
314+
#define ZIS_STUB_CMGETPUX 386 /* cmsGetConfigParmExtUnchecked */
313315

314316
/* dynalloc, 400-429 */
315317
#define ZIS_STUB_DYNASTXU 400 /* createSimpleTextUnit mapped */

0 commit comments

Comments
 (0)