DITLANConfig

@interface DITLANConfig : NSObject<NSCopying, NSMutableCopying> {
    @protected BOOL _enabled;
    @protected BOOL _mDNSEnabled;
    @protected BOOL _multicastEnabled;
}

@property (nonatomic, readonly, getter = isEnabled) BOOL enabled;
@property (nonatomic, readonly, getter = ismDNSEnabled) BOOL mDNSEnabled;
@property (nonatomic, readonly, getter = isMulticastEnabled) BOOL multicastEnabled;

- (instancetype)initWithDITLANConfig:(DITLANConfig *)config;
- (instancetype)initWithEnabled:(BOOL)enabled
    mDNSEnabled:(BOOL)mDNSEnabled
    multicastEnabled:(BOOL)multicastEnabled NS_DESIGNATED_INITIALIZER;

- (BOOL)isEqualToDITLANConfig:(DITLANConfig *)config;

@end

Undocumented

  • Undocumented

    Declaration

    Objective-C

    BOOL _enabled
  • Undocumented

    Declaration

    Objective-C

    BOOL _mDNSEnabled
  • Undocumented

    Declaration

    Objective-C

    BOOL _multicastEnabled
  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic, readonly, getter = isEnabled) BOOL enabled
  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic, readonly, getter = ismDNSEnabled) BOOL mDNSEnabled
  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic, readonly, getter = isMulticastEnabled) BOOL multicastEnabled
  • Undocumented

    Declaration

    Objective-C

    - (instancetype)initWithDITLANConfig:(DITLANConfig *)config;
  • Undocumented

    Declaration

    Objective-C

    - (instancetype)initWithEnabled:(BOOL)enabled
        mDNSEnabled:(BOOL)mDNSEnabled
        multicastEnabled:(BOOL)multicastEnabled NS_DESIGNATED_INITIALIZER;
  • Undocumented

    Declaration

    Objective-C

    - (BOOL)isEqualToDITLANConfig:(DITLANConfig *)config;