protocol (property)

The SMPP protocol to be used.

Syntax

@property (nonatomic,readwrite,assign,getter=protocol,setter=setProtocol:) int protocol;
- (int)protocol;
- (void)setProtocol:(int)newProtocol;

/* Possible Values */
SMPP_SMPP(0),
SMPP_CIMD2(1)
public var protocol_: SmppProtocols {
  get {...}
set {...} }
public enum SmppProtocols : Int32 { case smppSMPP = 0 case smppCIMD2 = 1 }

Default Value

0

Remarks

This property defines the protocol to be used when connecting to the server. Possible values are:

0 (smppSMPP - default) SMPP for traditional SMPP servers
1 (smppCIMD2) CIMD2 for Nokia Short Message Service Center servers

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