ADC Home > Reference Library > Reference > Networking > System Configuration Framework Reference
|
SCNetwork |
Includes: |
The SCNetwork API contains functions an application can
use to determine remote host reachability and notify the
system of configuration changes.
The two SCNetworkCheckReachability functions allow an
application to determine the status of the system's current
network configuration and the reachability of a target host
or address.
"Reachability" reflects whether a data packet, sent by an
application into the network stack, can leave the local
computer. Note that reachability does not guarantee
that the data packet will actually be received by the host.
SCNetworkCheckReachabilityByAddress |
Boolean SCNetworkCheckReachabilityByAddress ( const struct sockaddr *address, socklen_t addrlen, SCNetworkConnectionFlags *flags );
address
addrlen
flags
Returns TRUE if the network connection flags are valid; FALSE if the status could not be determined.
Determines if the given network address is reachable using the current network configuration.
SCNetworkCheckReachabilityByName |
Boolean SCNetworkCheckReachabilityByName ( const char *nodename, SCNetworkConnectionFlags *flags );
nodename
flags
Returns TRUE if the network connection flags are valid; FALSE if the status could not be determined.
Determines if the given network host or node name is reachable using the current network configuration.
SCNetworkInterfaceRefreshConfiguration |
Deprecated: in version 10.4. Replaced with SCNetworkInterfaceForceConfigurationRefresh.
Boolean SCNetworkInterfaceRefreshConfiguration ( CFStringRef ifName );
ifName
Returns TRUE if the notification was sent; FALSE otherwise.
Sends a notification to interested configuration agents
to have them immediately retry their configuration over a
particular network interface.
Note: This function must be invoked by root (uid == 0).
SCNetworkConnectionFlags |
enum { kSCNetworkFlagsTransientConnection = 1<<0, kSCNetworkFlagsReachable = 1<<1, kSCNetworkFlagsConnectionRequired = 1<<2, kSCNetworkFlagsConnectionAutomatic = 1<<3, kSCNetworkFlagsInterventionRequired = 1<<4, kSCNetworkFlagsIsLocalAddress = 1<<16, kSCNetworkFlagsIsDirect = 1<<17 };
kSCNetworkFlagsTransientConnection
- This flag indicates that the specified nodename or address can be reached via a transient connection, such as PPP.
kSCNetworkFlagsReachable
- This flag indicates that the specified nodename or address can be reached using the current network configuration.
kSCNetworkFlagsConnectionRequired
- This flag indicates that the specified nodename or address can be reached using the current network configuration, but a connection must first be established.
As an example, this status would be returned for a dialup connection that was not currently active, but could handle network traffic for the target system.kSCNetworkFlagsConnectionAutomatic
- This flag indicates that the specified nodename or address can be reached using the current network configuration, but a connection must first be established. Any traffic directed to the specified name or address will initiate the connection.
kSCNetworkFlagsInterventionRequired
- This flag indicates that the specified nodename or address can be reached using the current network configuration, but a connection must first be established. In addition, some form of user intervention will be required to establish this connection, such as providing a password, an authentication token, etc.
Note: At the present time, this flag will only be returned in the case where you have a dial-on-traffic configuration (ConnectionAutomatic), where an attempt to connect has already been made, and where some error (e.g. no dial tone, no answer, bad password, ...) was encountered during the automatic connection attempt. In this case the PPP controller will stop attempting to establish a connection until the user has intervened.kSCNetworkFlagsIsLocalAddress
- This flag indicates that the specified nodename or address is one associated with a network interface on the current system.
kSCNetworkFlagsIsDirect
- This flag indicates that network traffic to the specified nodename or address will not go through a gateway, but is routed directly to one of the interfaces in the system.
Flags that indicate whether the specified network nodename or address is reachable, whether a connection is required, and whether some user intervention may be required when establishing a connection.
|