DITMutableTCPListenConfig

@interface DITMutableTCPListenConfig : DITTCPListenConfig

@property (nonatomic, readwrite, getter = isEnabled) BOOL enabled;
/**
 IP interface to bind to. [::] by default.
 */
@property (nonatomic, readwrite, copy) NSString *interfaceIp;
/**
 Listening port. 4040 by default.
 */
@property (nonatomic, readwrite) uint16_t port;

@end

Undocumented

  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic, getter = isEnabled) BOOL enabled
  • IP interface to bind to. [::] by default.

    Declaration

    Objective-C

    @property (nonatomic, copy) NSString *_Nonnull interfaceIp;
  • Listening port. 4040 by default.

    Declaration

    Objective-C

    @property (nonatomic) uint16_t port;