]> git.saurik.com Git - apple/configd.git/blobdiff - SystemConfiguration.fproj/SCDynamicStoreCopySpecific.h
configd-1061.40.2.tar.gz
[apple/configd.git] / SystemConfiguration.fproj / SCDynamicStoreCopySpecific.h
index e95c460a3da352109ae6559e866fe80f6b6b661c..886e7315a0f33262329aac04f125ba1e8356c4b1 100644 (file)
@@ -1,15 +1,15 @@
 /*
- * Copyright (c) 2000-2003 Apple Computer, Inc. All rights reserved.
+ * Copyright (c) 2000-2005, 2008, 2015, 2018 Apple Inc. All rights reserved.
  *
  * @APPLE_LICENSE_HEADER_START@
- * 
+ *
  * This file contains Original Code and/or Modifications of Original Code
  * as defined in and that are subject to the Apple Public Source License
  * Version 2.0 (the 'License'). You may not use this file except in
  * compliance with the License. Please obtain a copy of the License at
  * http://www.opensource.apple.com/apsl/ and read it before using this
  * file.
- * 
+ *
  * The Original Code and all software distributed under the License are
  * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
  * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
  * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
  * Please see the License for the specific language governing rights and
  * limitations under the License.
- * 
+ *
  * @APPLE_LICENSE_HEADER_END@
  */
 
 #ifndef _SCDYNAMICSTORECOPYSPECIFIC_H
 #define _SCDYNAMICSTORECOPYSPECIFIC_H
 
+#include <os/availability.h>
 #include <sys/cdefs.h>
+#include <sys/types.h>
 #include <CoreFoundation/CoreFoundation.h>
 #include <SystemConfiguration/SCDynamicStore.h>
 
+CF_IMPLICIT_BRIDGING_ENABLED
+CF_ASSUME_NONNULL_BEGIN
 
 /*!
        @header SCDynamicStoreCopySpecific
-       The following APIs allow an application to determine specific
-       configuration information about the current system (e.g. the
-       computer/sharing name, the currently logged in user, etc).
+       @discussion The functions of the SCDynamicStoreCopySpecific API
+               allow an application to determine specific configuration
+               information about the current system (for example, the
+               computer or sharing name, the currently logged-in user, etc.).
  */
 
 
@@ -41,96 +46,171 @@ __BEGIN_DECLS
 
 /*!
        @function SCDynamicStoreCopyComputerName
-       @discussion Gets the current computer/host name.
-       @param store An SCDynamicStoreRef that should be used for communication
-               with the server.
+       @discussion Gets the current computer name.
+       @param store An SCDynamicStoreRef representing the dynamic store
+               session that should be used for communication with the server.
                If NULL, a temporary session will be used.
        @param nameEncoding A pointer to memory that, if non-NULL, will be
-               filled with the encoding associated with the computer/host name.
-       @result The current computer/host name;
+               filled with the encoding associated with the computer or
+               host name.
+       @result Returns the current computer name;
                NULL if the name has not been set or if an error was encountered.
                You must release the returned value.
  */
-CFStringRef
+CFStringRef __nullable
 SCDynamicStoreCopyComputerName         (
-                                       SCDynamicStoreRef       store,
-                                       CFStringEncoding        *nameEncoding
-                                       );
+                                       SCDynamicStoreRef       __nullable      store,
+                                       CFStringEncoding        * __nullable    nameEncoding
+                                       )                       API_AVAILABLE(macos(10.1)) SPI_AVAILABLE(ios(2.0), tvos(9.0), watchos(1.0), bridgeos(1.0));
 
 /*!
        @function SCDynamicStoreCopyConsoleUser
        @discussion Gets the name, user ID, and group ID of the currently
-               logged in user.
-       @param store An SCDynamicStoreRef that should be used for communication
-               with the server.
+               logged-in user.
+
+               Note: this function only provides information about the
+                     primary console.  It does not provide any details
+                     about console sessions that have fast user switched
+                     out or about other consoles.
+       @param store An SCDynamicStoreRef representing the dynamic store
+               session that should be used for communication with the server.
                If NULL, a temporary session will be used.
        @param uid A pointer to memory that will be filled with the user ID
-               of the current "Console" user. If NULL, this value will not
+               of the current console user. If NULL, this value will not
                be returned.
        @param gid A pointer to memory that will be filled with the group ID
-               of the current "Console" user. If NULL, this value will not be
+               of the current console user. If NULL, this value will not be
                returned.
-       @result The current user logged into the system;
+       @result Returns the user currently logged into the system;
                NULL if no user is logged in or if an error was encountered.
                You must release the returned value.
  */
-CFStringRef
+CFStringRef __nullable
 SCDynamicStoreCopyConsoleUser          (
-                                       SCDynamicStoreRef       store,
-                                       uid_t                   *uid,
-                                       gid_t                   *gid
-                                       );
+                                       SCDynamicStoreRef       __nullable      store,
+                                       uid_t                   * __nullable    uid,
+                                       gid_t                   * __nullable    gid
+                                       )                       API_AVAILABLE(macos(10.1)) API_UNAVAILABLE(ios, tvos, watchos, bridgeos);
 
 /*!
        @function SCDynamicStoreCopyLocalHostName
        @discussion Gets the current local host name.
-
-               See SCDynamicStoreKeyCreateHostNames() for notification
-               key information.
-       @param store An SCDynamicStoreRef that should be used for communication
-               with the server.
+       @param store An SCDynamicStoreRef representing the dynamic store
+               session that should be used for communication with the server.
                If NULL, a temporary session will be used.
-       @result The current local host name;
+       @result Returns the current local host name;
                NULL if the name has not been set or if an error was encountered.
                You must release the returned value.
  */
-CFStringRef
+CFStringRef __nullable
 SCDynamicStoreCopyLocalHostName                (
-                                       SCDynamicStoreRef       store
-                                       );
+                                       SCDynamicStoreRef       __nullable      store
+                                       )                       API_AVAILABLE(macos(10.1)) SPI_AVAILABLE(ios(2.0), tvos(9.0), watchos(1.0), bridgeos(1.0));
 
 /*!
        @function SCDynamicStoreCopyLocation
-       @discussion Gets the current "location" identifier.
-       @param store An SCDynamicStoreRef that should be used for communication
-               with the server.
+       @discussion Gets the current location identifier.
+       @param store An SCDynamicStoreRef representing the dynamic store
+               session that should be used for communication with the server.
                If NULL, a temporary session will be used.
-       @result A string representing the current "location" identifier;
-               NULL if no "location" identifier has been defined or if an error
+       @result Returns a string representing the current location identifier;
+               NULL if no location identifier has been defined or if an error
                was encountered.
                You must release the returned value.
  */
-CFStringRef
+CFStringRef __nullable
 SCDynamicStoreCopyLocation             (
-                                       SCDynamicStoreRef       store
-                                       );
+                                       SCDynamicStoreRef       __nullable      store
+                                       )                       API_AVAILABLE(macos(10.1)) API_UNAVAILABLE(ios, tvos, watchos, bridgeos);
 
 /*!
        @function SCDynamicStoreCopyProxies
        @discussion Gets the current internet proxy settings.
-       @param store An SCDynamicStoreRef that should be used for communication
-               with the server.
+               The returned proxy settings dictionary includes:
+
+               <TABLE BORDER>
+               <TR>
+                       <TH>key</TD>
+                       <TH>type</TD>
+                       <TH>description</TD>
+               </TR>
+               <TR>
+                       <TD>kSCPropNetProxiesExceptionsList</TD>
+                       <TD>CFArray[CFString]</TD>
+                       <TD>Host name patterns which should bypass the proxy</TD>
+               </TR>
+               <TR>
+                       <TD>kSCPropNetProxiesHTTPEnable</TD>
+                       <TD>CFNumber (0 or 1)</TD>
+                       <TD>Enables/disables the use of an HTTP proxy</TD>
+               </TR>
+               <TR>
+                       <TD>kSCPropNetProxiesHTTPProxy</TD>
+                       <TD>CFString</TD>
+                       <TD>The proxy host</TD>
+               </TR>
+               <TR>
+                       <TD>kSCPropNetProxiesHTTPPort</TD>
+                       <TD>CFNumber</TD>
+                       <TD>The proxy port number</TD>
+               </TR>
+               <TR>
+                       <TD>kSCPropNetProxiesHTTPSEnable</TD>
+                       <TD>CFNumber (0 or 1)</TD>
+                       <TD>Enables/disables the use of an HTTPS proxy</TD>
+               </TR>
+               <TR>
+                       <TD>kSCPropNetProxiesHTTPSProxy</TD>
+                       <TD>CFString</TD>
+                       <TD>The proxy host</TD>
+               </TR>
+               <TR>
+                       <TD>kSCPropNetProxiesHTTPSPort</TD>
+                       <TD>CFNumber</TD>
+                       <TD>The proxy port number</TD>
+               </TR>
+               <TR>
+                       <TD>kSCPropNetProxiesFTPEnable</TD>
+                       <TD>CFNumber (0 or 1)</TD>
+                       <TD>Enables/disables the use of an FTP proxy</TD>
+               </TR>
+               <TR>
+                       <TD>kSCPropNetProxiesFTPProxy</TD>
+                       <TD>CFString</TD>
+                       <TD>The proxy host</TD>
+               </TR>
+               <TR>
+                       <TD>kSCPropNetProxiesFTPPort</TD>
+                       <TD>CFNumber</TD>
+                       <TD>The proxy port number</TD>
+               </TR>
+               <TR>
+                       <TD>kSCPropNetProxiesFTPPassive</TD>
+                       <TD>CFNumber (0 or 1)</TD>
+                       <TD>Enable passive mode operation for use behind connection
+                       filter-ing firewalls.</TD>
+               </TR>
+               </TABLE>
+
+               Other key-value pairs are defined in the SCSchemaDefinitions.h
+               header file.
+       @param store An SCDynamicStoreRef representing the dynamic store
+               session that should be used for communication with the server.
                If NULL, a temporary session will be used.
-       @result A dictionary with key/value pairs representing the current
-               internet proxy settings (HTTP, FTP, etc);
-               NULL if no proxy settings have been defined or if an error was encountered.
+       @result Returns a dictionary containing key-value pairs that represent
+               the current internet proxy settings;
+               NULL if no proxy settings have been defined or if an error
+               was encountered.
                You must release the returned value.
  */
-CFDictionaryRef
+CFDictionaryRef __nullable
 SCDynamicStoreCopyProxies              (
-                                       SCDynamicStoreRef       store
-                                       );
+                                       SCDynamicStoreRef       __nullable      store
+                                       )                       API_AVAILABLE(macos(10.1)) SPI_AVAILABLE(ios(2.0), tvos(9.0), watchos(1.0), bridgeos(1.0));
 
 __END_DECLS
 
-#endif /* _SCDYNAMICSTORECOPYSPECIFIC_H */
+CF_ASSUME_NONNULL_END
+CF_IMPLICIT_BRIDGING_DISABLED
+
+#endif /* _SCDYNAMICSTORECOPYSPECIFIC_H */