clientEOL (property)

The EOL property is used to define boundaries in the input stream using the value of the property.

Syntax

- (NSString*)clientEOL:(int)clientId;
- (void)setClientEOL:(int)clientId:(NSString*)newClientEOL;

- (NSData*)clientEOLB:(int)clientId; - (void)setClientEOLB:(int)clientId:(NSData*)newClientEOL;
public func clientEOL(clientId: Int32) throws -> String
public func setClientEOL(clientId: Int32, newClientEOL: String) throws -> Void
public func clientEOLB(clientId: Int32) throws -> Data
public func setClientEOLB(clientId: Int32, newClientEOL: Data) throws -> Void

Default Value

""

Remarks

The EOL property is used to define boundaries in the input stream using the value of the property.

The EOL property is especially useful with ASCII files. Setting it to CRLF ("\r\n") enables splitting of the incoming ASCII text stream into lines. In this case, one event is fired for each line received (as well as in packet boundaries). The CRLF ("\r\n") . bytes are discarded.

The EOL property is a binary string. In particular, this means that it can be more than one byte long, and it can contain NULL bytes.

When reading the value of the property, if ConnectionId does not belong to a valid connection, then NULL will be returned, and the LastError property will contain a corresponding error message. If no error is encountered, then LastError will contain NULL.

The ClientId parameter specifies the index of the item in the array. The size of the array is controlled by the ClientCount property.

Copyright (c) 2023 /n software inc. - All rights reserved.
IPWorks SSH 2020 iOS Edition - Version 20.0 [Build 8501]