]> git.saurik.com Git - apple/configd.git/blob - SystemConfiguration.fproj/SystemConfiguration.h
configd-24.tar.gz
[apple/configd.git] / SystemConfiguration.fproj / SystemConfiguration.h
1 /*
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
11 *
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
18 * under the License.
19 *
20 * @APPLE_LICENSE_HEADER_END@
21 */
22
23 #ifndef _SYSTEMCONFIGURATION_H
24 #define _SYSTEMCONFIGURATION_H
25
26 /*!
27 @header SystemConfiguration.h
28 The SystemConfiguration framework provides access to the data used to configure a running system. The APIs provided by this framework communicate with the "configd" daemon.
29
30 The "configd" daemon manages a "cache" reflecting the desired configuration settings as well as the current state of the system. The daemon provides a notification mechanism for user-level processes which need to be aware of changes made to the "cache" data. Lastly, the daemon loads a number of bundles(or plug-ins) which monitor low-level kernel events and, via a set of policy modules, keep this cached data up to date.
31
32 The "configd" daemon also provides an address space/task/process which can be used by other CFRunLoop based functions which would otherwise require their own process/daemon for execution.
33
34 */
35
36 /* cache access APIs */
37 #include <SystemConfiguration/SCD.h>
38 #include <SystemConfiguration/SCDKeys.h>
39
40 /* preference access APIs */
41 #include <SystemConfiguration/SCP.h>
42 #include <SystemConfiguration/SCPPath.h>
43 #include <SystemConfiguration/SCPreferences.h>
44
45 /* "console user" APIs */
46 #include <SystemConfiguration/SCDConsoleUser.h>
47
48 /* "computer/host name" APIs */
49 #include <SystemConfiguration/SCDHostName.h>
50
51 /* "network reachability" APIs */
52 #include <SystemConfiguration/SCNetwork.h>
53
54 #endif /* _SYSTEMCONFIGURATION_H */