Table of Contents

TTMSFNCWebsocketOption Enumeration

Behavioral options that adjust how a connection assembles frames, validates the handshake, and replies to control frames.

API unit family: TMSFNCWebSocketCommon

Members

Name Description
twsoFrameByFrame Deliver each frame as it arrives instead of assembling fragmented frames into a single message.
// Do not assemble frames Deliver each frame as it arrives instead of assembling fragmented frames into a single message.
twsoSkipUpgradeCheck Skip validation of the Upgrade header during the handshake.
// Do not check handshake Upgrade header Skip validation of the Upgrade header during the handshake.
twsoSkipVersionCheck Skip validation of the protocol version during the handshake.
// Do not check handshake version Skip validation of the protocol version during the handshake.
twsoManualPong Suppress the automatic pong reply so the application can answer ping frames manually.
// Do not send Pong automatically Suppress the automatic pong reply so the application can answer ping frames manually.
twsoManualClose // Do not send close reply automatically Suppress the automatic close reply so the application can complete the closing handshake manually.