UrgentData Property

A string of data to be sent urgently (out-of-band) to the remote host.

Syntax

ANSI (Cross Platform)
int SetUrgentData(const char* lpUrgentData, int lenUrgentData);

Unicode (Windows)
INT SetUrgentData(LPCSTR lpUrgentData, INT lenUrgentData);
@property (nonatomic,readwrite,assign,getter=urgentData,setter=setUrgentData:) NSString* urgentData;
- (NSString*)urgentData;
- (void)setUrgentData:(NSString*)newUrgentData;

@property (nonatomic,readwrite,assign,getter=urgentDataB,setter=setUrgentDataB:) NSData* urgentDataB; - (NSData*)urgentDataB; - (void)setUrgentDataB:(NSData*)newUrgentData;
#define PID_TELNET_URGENTDATA 32


IPWORKS_EXTERNAL int IPWORKS_CALL IPWorks_Telnet_Set(void *lpObj, int propid, int arridx, const void *val, int cbVal);

Default Value

""

Remarks

The UrgentData property behaves exactly like the DataToSend property except that the data is sent Out Of Band (urgent). This means that the data assigned to UrgentData will bypass the normal TCP queuing mechanism. Use this property with caution.

This property is write-only and not available at design time.

Data Type

Binary String

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks 2020 C++ Edition - Version 20.0 [Build 8307]