176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
|
/**
* @brief The minimum number of dots for a name to be considered absolute.
*/
@property (nonatomic) unsigned int minNumberOfDotsInAbsoluteName;
/**
* @brief Whether the resolver uses TCP to talk to a name server.
*/
@property (nonatomic) bool usesTCP;
/**
* @brief The interval in seconds in which the config should be reloaded.
*
* Setting this to 0 disables config reloading.
*/
@property (nonatomic) OFTimeInterval configReloadInterval;
|
|
|
|
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
|
/**
* @brief The minimum number of dots for a name to be considered absolute.
*/
@property (nonatomic) unsigned int minNumberOfDotsInAbsoluteName;
/**
* @brief Whether the resolver forces TCP to talk to a name server.
*/
@property (nonatomic) bool forcesTCP;
/**
* @brief The interval in seconds in which the config should be reloaded.
*
* Setting this to 0 disables config reloading.
*/
@property (nonatomic) OFTimeInterval configReloadInterval;
|