ObjFW
Loading...
Searching...
No Matches
OFDNSResolverSettings.h
1/*
2 * Copyright (c) 2008-2024 Jonathan Schleifer <js@nil.im>
3 *
4 * All rights reserved.
5 *
6 * This program is free software: you can redistribute it and/or modify it
7 * under the terms of the GNU Lesser General Public License version 3.0 only,
8 * as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
13 * version 3.0 for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public License
16 * version 3.0 along with this program. If not, see
17 * <https://www.gnu.org/licenses/>.
18 */
19
20#import "OFObject.h"
21
22OF_ASSUME_NONNULL_BEGIN
23
24@class OFArray OF_GENERIC(ObjectType);
25@class OFDate;
26@class OFDictionary OF_GENERIC(KeyType, ObjectType);
27
28@interface OFDNSResolverSettings: OFObject <OFCopying>
29{
30@public
31 OFDictionary OF_GENERIC(OFString *, OFArray OF_GENERIC(OFString *) *)
32 *_staticHosts;
33 OFArray OF_GENERIC(OFString *) *_nameServers;
34 OFString *_Nullable _localDomain;
35 OFArray OF_GENERIC(OFString *) *_searchDomains;
36 OFTimeInterval _timeout;
37 unsigned int _maxAttempts, _minNumberOfDotsInAbsoluteName;
38 bool _forcesTCP;
39 OFTimeInterval _configReloadInterval;
40@protected
41 OFDate *_lastConfigReload;
42}
43
44- (void)reload;
45@end
46
47OF_ASSUME_NONNULL_END
double OFTimeInterval
A time interval in seconds.
Definition OFObject.h:154
An abstract class for storing objects in an array.
Definition OFArray.h:109
A class for storing, accessing and comparing dates.
Definition OFDate.h:34
An abstract class for storing objects in a dictionary.
Definition OFDictionary.h:84
The root class for all other classes inside ObjFW.
Definition OFObject.h:692
A class for handling strings.
Definition OFString.h:139
A protocol for the creation of copies.
Definition OFObject.h:1350