Header String Encode


Type:
Boolean of C type T_BOOL
Default Value:
FALSE
Valid Values:
TRUE or FALSE

The header string encode property controls whether the message string properties are converted into four-byte integers when sent through connections. Enabling this property compresses the message header so that less network bandwidth is used. Note that more CPU utilization is required to do the compression.

The header string encode property of an outgoing message can always be set on a per-message basis, but using the message type header string encode property makes it easier to change the default header string encode property for all outgoing messages of a specific type.

Function to set value:

TipcMtSetHeaderStrEncode. For example:

if (!TipcMtSetHeaderStrEncode(mt, TRUE)) { 
  /* error */ 
} 
Function to get value:

TipcMtGetHeaderStrEncode. For example:

if (!TipcMtGetHeaderStrEncode(mt, &header_str_encode)) { 
  /* error */ 
} 

TIBCO SmartSockets™ User’s Guide
Software Release 6.8, July 2006
Copyright © TIBCO Software Inc. All rights reserved
www.tibco.com